diff --git a/corpus/expressions.txt b/corpus/expressions.txt index 1023977d..e5f0c15b 100644 --- a/corpus/expressions.txt +++ b/corpus/expressions.txt @@ -125,6 +125,9 @@ Range expressions ..; 1..b; a..b; +1..(1); +(1)..1; +(1)..(1); --- @@ -134,7 +137,16 @@ a..b; (range_expression (integer_literal)) (range_expression) (range_expression (integer_literal) (identifier)) - (range_expression (identifier) (identifier))) + (range_expression (identifier) (identifier)) + (range_expression + (integer_literal) + (parenthesized_expression (integer_literal))) + (range_expression + (parenthesized_expression (integer_literal)) + (integer_literal)) + (range_expression + (parenthesized_expression (integer_literal)) + (parenthesized_expression (integer_literal)))) ============================================ Assignment expressions @@ -802,4 +814,4 @@ let three_ranges = [const { (0..=5).into_inner() }; 3]; (integer_literal))) field: (field_identifier)) arguments: (arguments)))) - length: (integer_literal)))) \ No newline at end of file + length: (integer_literal)))) diff --git a/grammar.js b/grammar.js index 1fb0a853..35cb714e 100644 --- a/grammar.js +++ b/grammar.js @@ -1,4 +1,5 @@ const PREC = { + range: 15, call: 14, field: 13, unary: 11, @@ -11,7 +12,6 @@ const PREC = { comparative: 4, and: 3, or: 2, - range: 1, assign: 0, closure: -1, } @@ -914,7 +914,10 @@ module.exports = grammar({ ), range_expression: $ => prec.left(PREC.range, choice( - seq($._expression, choice('..', '...', '..='), $._expression), + prec.left( + PREC.range + 1, + seq($._expression, choice('..', '...', '..='), $._expression) + ), seq($._expression, '..'), seq('..', $._expression), '..' diff --git a/src/grammar.json b/src/grammar.json index c156fd9e..6f707cbf 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5025,39 +5025,43 @@ }, "range_expression": { "type": "PREC_LEFT", - "value": 1, + "value": 15, "content": { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..." - }, - { - "type": "STRING", - "value": "..=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "..=" + } + ] + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } }, { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 491b6f8a..67838db7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 12 -#define STATE_COUNT 2415 +#define STATE_COUNT 2418 #define LARGE_STATE_COUNT 546 #define SYMBOL_COUNT 313 #define ALIAS_COUNT 3 @@ -5644,22 +5644,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [27] = {.lex_state = 5, .external_lex_state = 2}, [28] = {.lex_state = 5, .external_lex_state = 2}, [29] = {.lex_state = 5, .external_lex_state = 2}, - [30] = {.lex_state = 56, .external_lex_state = 2}, - [31] = {.lex_state = 5, .external_lex_state = 2}, + [30] = {.lex_state = 5, .external_lex_state = 2}, + [31] = {.lex_state = 56, .external_lex_state = 2}, [32] = {.lex_state = 56, .external_lex_state = 2}, [33] = {.lex_state = 5, .external_lex_state = 2}, [34] = {.lex_state = 5, .external_lex_state = 2}, [35] = {.lex_state = 5, .external_lex_state = 2}, - [36] = {.lex_state = 5, .external_lex_state = 2}, - [37] = {.lex_state = 5, .external_lex_state = 2}, + [36] = {.lex_state = 56, .external_lex_state = 2}, + [37] = {.lex_state = 56, .external_lex_state = 2}, [38] = {.lex_state = 5, .external_lex_state = 2}, [39] = {.lex_state = 56, .external_lex_state = 2}, - [40] = {.lex_state = 56, .external_lex_state = 2}, - [41] = {.lex_state = 56, .external_lex_state = 2}, + [40] = {.lex_state = 5, .external_lex_state = 2}, + [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 56, .external_lex_state = 2}, [44] = {.lex_state = 56, .external_lex_state = 2}, - [45] = {.lex_state = 5, .external_lex_state = 2}, + [45] = {.lex_state = 56, .external_lex_state = 2}, [46] = {.lex_state = 56, .external_lex_state = 2}, [47] = {.lex_state = 56, .external_lex_state = 2}, [48] = {.lex_state = 56, .external_lex_state = 2}, @@ -5668,21 +5668,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [51] = {.lex_state = 56, .external_lex_state = 2}, [52] = {.lex_state = 56, .external_lex_state = 2}, [53] = {.lex_state = 56, .external_lex_state = 2}, - [54] = {.lex_state = 56, .external_lex_state = 2}, - [55] = {.lex_state = 5, .external_lex_state = 2}, + [54] = {.lex_state = 5, .external_lex_state = 2}, + [55] = {.lex_state = 56, .external_lex_state = 2}, [56] = {.lex_state = 5, .external_lex_state = 2}, [57] = {.lex_state = 56, .external_lex_state = 2}, - [58] = {.lex_state = 56, .external_lex_state = 2}, + [58] = {.lex_state = 5, .external_lex_state = 2}, [59] = {.lex_state = 5, .external_lex_state = 2}, [60] = {.lex_state = 56, .external_lex_state = 2}, - [61] = {.lex_state = 5, .external_lex_state = 2}, + [61] = {.lex_state = 56, .external_lex_state = 2}, [62] = {.lex_state = 56, .external_lex_state = 2}, [63] = {.lex_state = 56, .external_lex_state = 2}, [64] = {.lex_state = 56, .external_lex_state = 2}, [65] = {.lex_state = 56, .external_lex_state = 2}, [66] = {.lex_state = 56, .external_lex_state = 2}, [67] = {.lex_state = 56, .external_lex_state = 2}, - [68] = {.lex_state = 56, .external_lex_state = 2}, + [68] = {.lex_state = 5, .external_lex_state = 2}, [69] = {.lex_state = 56, .external_lex_state = 2}, [70] = {.lex_state = 56, .external_lex_state = 2}, [71] = {.lex_state = 56, .external_lex_state = 2}, @@ -5694,10 +5694,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 5, .external_lex_state = 2}, [78] = {.lex_state = 5, .external_lex_state = 2}, [79] = {.lex_state = 5, .external_lex_state = 2}, - [80] = {.lex_state = 56, .external_lex_state = 2}, + [80] = {.lex_state = 5, .external_lex_state = 2}, [81] = {.lex_state = 5, .external_lex_state = 2}, [82] = {.lex_state = 5, .external_lex_state = 2}, - [83] = {.lex_state = 5, .external_lex_state = 2}, + [83] = {.lex_state = 56, .external_lex_state = 2}, [84] = {.lex_state = 5, .external_lex_state = 2}, [85] = {.lex_state = 5, .external_lex_state = 2}, [86] = {.lex_state = 5, .external_lex_state = 2}, @@ -5718,22 +5718,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 5, .external_lex_state = 2}, [102] = {.lex_state = 5, .external_lex_state = 2}, [103] = {.lex_state = 5, .external_lex_state = 2}, - [104] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 5, .external_lex_state = 2}, [105] = {.lex_state = 5, .external_lex_state = 2}, [106] = {.lex_state = 5, .external_lex_state = 2}, [107] = {.lex_state = 5, .external_lex_state = 2}, [108] = {.lex_state = 5, .external_lex_state = 2}, [109] = {.lex_state = 5, .external_lex_state = 2}, [110] = {.lex_state = 5, .external_lex_state = 2}, - [111] = {.lex_state = 6, .external_lex_state = 2}, + [111] = {.lex_state = 5, .external_lex_state = 2}, [112] = {.lex_state = 5, .external_lex_state = 2}, [113] = {.lex_state = 5, .external_lex_state = 2}, [114] = {.lex_state = 5, .external_lex_state = 2}, - [115] = {.lex_state = 6, .external_lex_state = 2}, + [115] = {.lex_state = 5, .external_lex_state = 2}, [116] = {.lex_state = 5, .external_lex_state = 2}, [117] = {.lex_state = 5, .external_lex_state = 2}, - [118] = {.lex_state = 6, .external_lex_state = 2}, - [119] = {.lex_state = 5, .external_lex_state = 2}, + [118] = {.lex_state = 5, .external_lex_state = 2}, + [119] = {.lex_state = 6, .external_lex_state = 2}, [120] = {.lex_state = 5, .external_lex_state = 2}, [121] = {.lex_state = 5, .external_lex_state = 2}, [122] = {.lex_state = 5, .external_lex_state = 2}, @@ -5745,13 +5745,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [128] = {.lex_state = 5, .external_lex_state = 2}, [129] = {.lex_state = 5, .external_lex_state = 2}, [130] = {.lex_state = 5, .external_lex_state = 2}, - [131] = {.lex_state = 6, .external_lex_state = 2}, + [131] = {.lex_state = 5, .external_lex_state = 2}, [132] = {.lex_state = 5, .external_lex_state = 2}, [133] = {.lex_state = 5, .external_lex_state = 2}, [134] = {.lex_state = 5, .external_lex_state = 2}, [135] = {.lex_state = 5, .external_lex_state = 2}, [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 5, .external_lex_state = 2}, + [137] = {.lex_state = 6, .external_lex_state = 2}, [138] = {.lex_state = 5, .external_lex_state = 2}, [139] = {.lex_state = 5, .external_lex_state = 2}, [140] = {.lex_state = 5, .external_lex_state = 2}, @@ -5772,9 +5772,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 5, .external_lex_state = 2}, [156] = {.lex_state = 5, .external_lex_state = 2}, [157] = {.lex_state = 5, .external_lex_state = 2}, - [158] = {.lex_state = 5, .external_lex_state = 2}, + [158] = {.lex_state = 6, .external_lex_state = 2}, [159] = {.lex_state = 5, .external_lex_state = 2}, - [160] = {.lex_state = 5, .external_lex_state = 2}, + [160] = {.lex_state = 6, .external_lex_state = 2}, [161] = {.lex_state = 5, .external_lex_state = 2}, [162] = {.lex_state = 5, .external_lex_state = 2}, [163] = {.lex_state = 5, .external_lex_state = 2}, @@ -5792,7 +5792,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [175] = {.lex_state = 5, .external_lex_state = 2}, [176] = {.lex_state = 5, .external_lex_state = 2}, [177] = {.lex_state = 5, .external_lex_state = 2}, - [178] = {.lex_state = 5, .external_lex_state = 2}, + [178] = {.lex_state = 6, .external_lex_state = 2}, [179] = {.lex_state = 5, .external_lex_state = 2}, [180] = {.lex_state = 6, .external_lex_state = 2}, [181] = {.lex_state = 6, .external_lex_state = 2}, @@ -5822,30 +5822,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [205] = {.lex_state = 5, .external_lex_state = 2}, [206] = {.lex_state = 1, .external_lex_state = 2}, [207] = {.lex_state = 1, .external_lex_state = 2}, - [208] = {.lex_state = 5, .external_lex_state = 2}, - [209] = {.lex_state = 1, .external_lex_state = 2}, + [208] = {.lex_state = 1, .external_lex_state = 2}, + [209] = {.lex_state = 5, .external_lex_state = 2}, [210] = {.lex_state = 5, .external_lex_state = 2}, [211] = {.lex_state = 5, .external_lex_state = 2}, - [212] = {.lex_state = 5, .external_lex_state = 2}, - [213] = {.lex_state = 1, .external_lex_state = 2}, + [212] = {.lex_state = 1, .external_lex_state = 2}, + [213] = {.lex_state = 5, .external_lex_state = 2}, [214] = {.lex_state = 1, .external_lex_state = 2}, [215] = {.lex_state = 1, .external_lex_state = 2}, - [216] = {.lex_state = 1, .external_lex_state = 2}, - [217] = {.lex_state = 12, .external_lex_state = 2}, + [216] = {.lex_state = 12, .external_lex_state = 2}, + [217] = {.lex_state = 1, .external_lex_state = 2}, [218] = {.lex_state = 4, .external_lex_state = 3}, - [219] = {.lex_state = 4, .external_lex_state = 3}, - [220] = {.lex_state = 5, .external_lex_state = 2}, + [219] = {.lex_state = 1, .external_lex_state = 2}, + [220] = {.lex_state = 1, .external_lex_state = 2}, [221] = {.lex_state = 1, .external_lex_state = 2}, - [222] = {.lex_state = 1, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 2}, + [222] = {.lex_state = 5, .external_lex_state = 2}, + [223] = {.lex_state = 5, .external_lex_state = 2}, [224] = {.lex_state = 1, .external_lex_state = 2}, - [225] = {.lex_state = 5, .external_lex_state = 2}, - [226] = {.lex_state = 1, .external_lex_state = 2}, - [227] = {.lex_state = 4, .external_lex_state = 3}, + [225] = {.lex_state = 1, .external_lex_state = 2}, + [226] = {.lex_state = 4, .external_lex_state = 3}, + [227] = {.lex_state = 1, .external_lex_state = 2}, [228] = {.lex_state = 4, .external_lex_state = 3}, [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 = 5, .external_lex_state = 2}, [232] = {.lex_state = 1, .external_lex_state = 2}, [233] = {.lex_state = 1, .external_lex_state = 2}, [234] = {.lex_state = 1, .external_lex_state = 2}, @@ -5854,13 +5854,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 1, .external_lex_state = 2}, [238] = {.lex_state = 1, .external_lex_state = 2}, [239] = {.lex_state = 1, .external_lex_state = 2}, - [240] = {.lex_state = 4, .external_lex_state = 3}, - [241] = {.lex_state = 5, .external_lex_state = 2}, + [240] = {.lex_state = 1, .external_lex_state = 2}, + [241] = {.lex_state = 4, .external_lex_state = 3}, [242] = {.lex_state = 1, .external_lex_state = 2}, [243] = {.lex_state = 1, .external_lex_state = 2}, - [244] = {.lex_state = 1, .external_lex_state = 2}, - [245] = {.lex_state = 12, .external_lex_state = 2}, - [246] = {.lex_state = 57, .external_lex_state = 2}, + [244] = {.lex_state = 4, .external_lex_state = 3}, + [245] = {.lex_state = 57, .external_lex_state = 2}, + [246] = {.lex_state = 12, .external_lex_state = 2}, [247] = {.lex_state = 57, .external_lex_state = 2}, [248] = {.lex_state = 57, .external_lex_state = 2}, [249] = {.lex_state = 57, .external_lex_state = 2}, @@ -5888,7 +5888,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 57, .external_lex_state = 2}, [272] = {.lex_state = 57, .external_lex_state = 2}, [273] = {.lex_state = 57, .external_lex_state = 2}, - [274] = {.lex_state = 57, .external_lex_state = 2}, + [274] = {.lex_state = 12, .external_lex_state = 2}, [275] = {.lex_state = 57, .external_lex_state = 2}, [276] = {.lex_state = 57, .external_lex_state = 2}, [277] = {.lex_state = 57, .external_lex_state = 2}, @@ -5896,29 +5896,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 57, .external_lex_state = 2}, [280] = {.lex_state = 57, .external_lex_state = 2}, [281] = {.lex_state = 57, .external_lex_state = 2}, - [282] = {.lex_state = 12, .external_lex_state = 2}, + [282] = {.lex_state = 57, .external_lex_state = 2}, [283] = {.lex_state = 57, .external_lex_state = 2}, [284] = {.lex_state = 57, .external_lex_state = 2}, [285] = {.lex_state = 57, .external_lex_state = 2}, [286] = {.lex_state = 57, .external_lex_state = 2}, [287] = {.lex_state = 57, .external_lex_state = 2}, - [288] = {.lex_state = 12, .external_lex_state = 2}, + [288] = {.lex_state = 57, .external_lex_state = 2}, [289] = {.lex_state = 57, .external_lex_state = 2}, [290] = {.lex_state = 57, .external_lex_state = 2}, - [291] = {.lex_state = 57, .external_lex_state = 2}, - [292] = {.lex_state = 57, .external_lex_state = 2}, - [293] = {.lex_state = 57, .external_lex_state = 2}, + [291] = {.lex_state = 12, .external_lex_state = 2}, + [292] = {.lex_state = 12, .external_lex_state = 2}, + [293] = {.lex_state = 12, .external_lex_state = 2}, [294] = {.lex_state = 57, .external_lex_state = 2}, - [295] = {.lex_state = 57, .external_lex_state = 2}, + [295] = {.lex_state = 12, .external_lex_state = 2}, [296] = {.lex_state = 57, .external_lex_state = 2}, - [297] = {.lex_state = 12, .external_lex_state = 2}, + [297] = {.lex_state = 57, .external_lex_state = 2}, [298] = {.lex_state = 57, .external_lex_state = 2}, [299] = {.lex_state = 57, .external_lex_state = 2}, [300] = {.lex_state = 57, .external_lex_state = 2}, [301] = {.lex_state = 57, .external_lex_state = 2}, - [302] = {.lex_state = 57, .external_lex_state = 2}, - [303] = {.lex_state = 57, .external_lex_state = 2}, - [304] = {.lex_state = 57, .external_lex_state = 2}, + [302] = {.lex_state = 12, .external_lex_state = 2}, + [303] = {.lex_state = 12, .external_lex_state = 2}, + [304] = {.lex_state = 12, .external_lex_state = 2}, [305] = {.lex_state = 57, .external_lex_state = 2}, [306] = {.lex_state = 57, .external_lex_state = 2}, [307] = {.lex_state = 57, .external_lex_state = 2}, @@ -5927,10 +5927,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [310] = {.lex_state = 57, .external_lex_state = 2}, [311] = {.lex_state = 57, .external_lex_state = 2}, [312] = {.lex_state = 57, .external_lex_state = 2}, - [313] = {.lex_state = 57, .external_lex_state = 2}, - [314] = {.lex_state = 57, .external_lex_state = 2}, + [313] = {.lex_state = 12, .external_lex_state = 2}, + [314] = {.lex_state = 12, .external_lex_state = 2}, [315] = {.lex_state = 57, .external_lex_state = 2}, - [316] = {.lex_state = 57, .external_lex_state = 2}, + [316] = {.lex_state = 12, .external_lex_state = 2}, [317] = {.lex_state = 57, .external_lex_state = 2}, [318] = {.lex_state = 57, .external_lex_state = 2}, [319] = {.lex_state = 57, .external_lex_state = 2}, @@ -5944,9 +5944,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 57, .external_lex_state = 2}, [328] = {.lex_state = 57, .external_lex_state = 2}, [329] = {.lex_state = 57, .external_lex_state = 2}, - [330] = {.lex_state = 12, .external_lex_state = 2}, - [331] = {.lex_state = 12, .external_lex_state = 2}, - [332] = {.lex_state = 12, .external_lex_state = 2}, + [330] = {.lex_state = 57, .external_lex_state = 2}, + [331] = {.lex_state = 57, .external_lex_state = 2}, + [332] = {.lex_state = 57, .external_lex_state = 2}, [333] = {.lex_state = 57, .external_lex_state = 2}, [334] = {.lex_state = 57, .external_lex_state = 2}, [335] = {.lex_state = 57, .external_lex_state = 2}, @@ -5972,8 +5972,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [355] = {.lex_state = 57, .external_lex_state = 2}, [356] = {.lex_state = 57, .external_lex_state = 2}, [357] = {.lex_state = 57, .external_lex_state = 2}, - [358] = {.lex_state = 12, .external_lex_state = 2}, - [359] = {.lex_state = 12, .external_lex_state = 2}, + [358] = {.lex_state = 57, .external_lex_state = 2}, + [359] = {.lex_state = 57, .external_lex_state = 2}, [360] = {.lex_state = 57, .external_lex_state = 2}, [361] = {.lex_state = 57, .external_lex_state = 2}, [362] = {.lex_state = 57, .external_lex_state = 2}, @@ -6013,8 +6013,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [396] = {.lex_state = 57, .external_lex_state = 2}, [397] = {.lex_state = 57, .external_lex_state = 2}, [398] = {.lex_state = 57, .external_lex_state = 2}, - [399] = {.lex_state = 12, .external_lex_state = 2}, - [400] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 57, .external_lex_state = 2}, + [400] = {.lex_state = 57, .external_lex_state = 2}, [401] = {.lex_state = 57, .external_lex_state = 2}, [402] = {.lex_state = 57, .external_lex_state = 2}, [403] = {.lex_state = 57, .external_lex_state = 2}, @@ -6039,28 +6039,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [422] = {.lex_state = 57, .external_lex_state = 2}, [423] = {.lex_state = 57, .external_lex_state = 2}, [424] = {.lex_state = 57, .external_lex_state = 2}, - [425] = {.lex_state = 57, .external_lex_state = 2}, + [425] = {.lex_state = 12, .external_lex_state = 2}, [426] = {.lex_state = 57, .external_lex_state = 2}, [427] = {.lex_state = 57, .external_lex_state = 2}, [428] = {.lex_state = 57, .external_lex_state = 2}, [429] = {.lex_state = 57, .external_lex_state = 2}, - [430] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 57, .external_lex_state = 2}, [431] = {.lex_state = 57, .external_lex_state = 2}, [432] = {.lex_state = 57, .external_lex_state = 2}, [433] = {.lex_state = 57, .external_lex_state = 2}, [434] = {.lex_state = 57, .external_lex_state = 2}, [435] = {.lex_state = 57, .external_lex_state = 2}, - [436] = {.lex_state = 57, .external_lex_state = 2}, + [436] = {.lex_state = 12, .external_lex_state = 2}, [437] = {.lex_state = 57, .external_lex_state = 2}, [438] = {.lex_state = 57, .external_lex_state = 2}, [439] = {.lex_state = 57, .external_lex_state = 2}, [440] = {.lex_state = 57, .external_lex_state = 2}, [441] = {.lex_state = 57, .external_lex_state = 2}, [442] = {.lex_state = 57, .external_lex_state = 2}, - [443] = {.lex_state = 12, .external_lex_state = 2}, + [443] = {.lex_state = 57, .external_lex_state = 2}, [444] = {.lex_state = 12, .external_lex_state = 2}, [445] = {.lex_state = 57, .external_lex_state = 2}, - [446] = {.lex_state = 12, .external_lex_state = 2}, + [446] = {.lex_state = 57, .external_lex_state = 2}, [447] = {.lex_state = 57, .external_lex_state = 2}, [448] = {.lex_state = 57, .external_lex_state = 2}, [449] = {.lex_state = 57, .external_lex_state = 2}, @@ -6079,19 +6079,19 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [462] = {.lex_state = 12, .external_lex_state = 2}, [463] = {.lex_state = 12, .external_lex_state = 2}, [464] = {.lex_state = 12, .external_lex_state = 2}, - [465] = {.lex_state = 12, .external_lex_state = 2}, + [465] = {.lex_state = 5, .external_lex_state = 2}, [466] = {.lex_state = 12, .external_lex_state = 2}, [467] = {.lex_state = 12, .external_lex_state = 2}, - [468] = {.lex_state = 12, .external_lex_state = 2}, + [468] = {.lex_state = 5, .external_lex_state = 2}, [469] = {.lex_state = 12, .external_lex_state = 2}, [470] = {.lex_state = 12, .external_lex_state = 2}, [471] = {.lex_state = 12, .external_lex_state = 2}, - [472] = {.lex_state = 12, .external_lex_state = 2}, + [472] = {.lex_state = 5, .external_lex_state = 2}, [473] = {.lex_state = 12, .external_lex_state = 2}, [474] = {.lex_state = 12, .external_lex_state = 2}, [475] = {.lex_state = 12, .external_lex_state = 2}, [476] = {.lex_state = 12, .external_lex_state = 2}, - [477] = {.lex_state = 5, .external_lex_state = 2}, + [477] = {.lex_state = 12, .external_lex_state = 2}, [478] = {.lex_state = 12, .external_lex_state = 2}, [479] = {.lex_state = 12, .external_lex_state = 2}, [480] = {.lex_state = 12, .external_lex_state = 2}, @@ -6099,26 +6099,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [482] = {.lex_state = 12, .external_lex_state = 2}, [483] = {.lex_state = 12, .external_lex_state = 2}, [484] = {.lex_state = 12, .external_lex_state = 2}, - [485] = {.lex_state = 5, .external_lex_state = 2}, + [485] = {.lex_state = 12, .external_lex_state = 2}, [486] = {.lex_state = 12, .external_lex_state = 2}, [487] = {.lex_state = 12, .external_lex_state = 2}, [488] = {.lex_state = 12, .external_lex_state = 2}, [489] = {.lex_state = 12, .external_lex_state = 2}, [490] = {.lex_state = 12, .external_lex_state = 2}, [491] = {.lex_state = 12, .external_lex_state = 2}, - [492] = {.lex_state = 5, .external_lex_state = 2}, + [492] = {.lex_state = 12, .external_lex_state = 2}, [493] = {.lex_state = 5, .external_lex_state = 2}, [494] = {.lex_state = 7, .external_lex_state = 3}, - [495] = {.lex_state = 5, .external_lex_state = 2}, - [496] = {.lex_state = 11, .external_lex_state = 2}, - [497] = {.lex_state = 7, .external_lex_state = 3}, + [495] = {.lex_state = 7, .external_lex_state = 3}, + [496] = {.lex_state = 7, .external_lex_state = 3}, + [497] = {.lex_state = 5, .external_lex_state = 2}, [498] = {.lex_state = 7, .external_lex_state = 3}, [499] = {.lex_state = 7, .external_lex_state = 3}, - [500] = {.lex_state = 5, .external_lex_state = 2}, - [501] = {.lex_state = 7, .external_lex_state = 3}, - [502] = {.lex_state = 7, .external_lex_state = 3}, + [500] = {.lex_state = 7, .external_lex_state = 3}, + [501] = {.lex_state = 11, .external_lex_state = 2}, + [502] = {.lex_state = 5, .external_lex_state = 2}, [503] = {.lex_state = 7, .external_lex_state = 3}, - [504] = {.lex_state = 7, .external_lex_state = 3}, + [504] = {.lex_state = 12, .external_lex_state = 2}, [505] = {.lex_state = 7, .external_lex_state = 3}, [506] = {.lex_state = 12, .external_lex_state = 2}, [507] = {.lex_state = 12, .external_lex_state = 2}, @@ -6128,42 +6128,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [511] = {.lex_state = 12, .external_lex_state = 2}, [512] = {.lex_state = 12, .external_lex_state = 2}, [513] = {.lex_state = 12, .external_lex_state = 2}, - [514] = {.lex_state = 12, .external_lex_state = 2}, + [514] = {.lex_state = 7, .external_lex_state = 3}, [515] = {.lex_state = 12, .external_lex_state = 2}, [516] = {.lex_state = 12, .external_lex_state = 2}, [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 12, .external_lex_state = 2}, + [518] = {.lex_state = 5, .external_lex_state = 2}, [519] = {.lex_state = 12, .external_lex_state = 2}, [520] = {.lex_state = 12, .external_lex_state = 2}, [521] = {.lex_state = 7, .external_lex_state = 3}, [522] = {.lex_state = 12, .external_lex_state = 2}, - [523] = {.lex_state = 5, .external_lex_state = 2}, + [523] = {.lex_state = 12, .external_lex_state = 2}, [524] = {.lex_state = 7, .external_lex_state = 3}, [525] = {.lex_state = 5, .external_lex_state = 2}, - [526] = {.lex_state = 5, .external_lex_state = 2}, + [526] = {.lex_state = 7, .external_lex_state = 3}, [527] = {.lex_state = 7, .external_lex_state = 3}, - [528] = {.lex_state = 7, .external_lex_state = 3}, - [529] = {.lex_state = 7, .external_lex_state = 3}, - [530] = {.lex_state = 7, .external_lex_state = 3}, + [528] = {.lex_state = 5, .external_lex_state = 2}, + [529] = {.lex_state = 5, .external_lex_state = 2}, + [530] = {.lex_state = 5, .external_lex_state = 2}, [531] = {.lex_state = 5, .external_lex_state = 2}, - [532] = {.lex_state = 5, .external_lex_state = 2}, + [532] = {.lex_state = 7, .external_lex_state = 3}, [533] = {.lex_state = 5, .external_lex_state = 2}, - [534] = {.lex_state = 5, .external_lex_state = 2}, - [535] = {.lex_state = 5, .external_lex_state = 2}, - [536] = {.lex_state = 5, .external_lex_state = 2}, + [534] = {.lex_state = 7, .external_lex_state = 3}, + [535] = {.lex_state = 7, .external_lex_state = 3}, + [536] = {.lex_state = 7, .external_lex_state = 3}, [537] = {.lex_state = 5, .external_lex_state = 2}, - [538] = {.lex_state = 7, .external_lex_state = 3}, + [538] = {.lex_state = 5, .external_lex_state = 2}, [539] = {.lex_state = 5, .external_lex_state = 2}, [540] = {.lex_state = 7, .external_lex_state = 3}, [541] = {.lex_state = 7, .external_lex_state = 3}, - [542] = {.lex_state = 7, .external_lex_state = 3}, + [542] = {.lex_state = 5, .external_lex_state = 2}, [543] = {.lex_state = 5, .external_lex_state = 2}, [544] = {.lex_state = 5, .external_lex_state = 2}, [545] = {.lex_state = 5, .external_lex_state = 2}, [546] = {.lex_state = 5, .external_lex_state = 2}, [547] = {.lex_state = 7, .external_lex_state = 3}, [548] = {.lex_state = 5, .external_lex_state = 2}, - [549] = {.lex_state = 5, .external_lex_state = 2}, + [549] = {.lex_state = 7, .external_lex_state = 3}, [550] = {.lex_state = 5, .external_lex_state = 2}, [551] = {.lex_state = 5, .external_lex_state = 2}, [552] = {.lex_state = 5, .external_lex_state = 2}, @@ -6171,41 +6171,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [554] = {.lex_state = 7, .external_lex_state = 3}, [555] = {.lex_state = 5, .external_lex_state = 2}, [556] = {.lex_state = 5, .external_lex_state = 2}, - [557] = {.lex_state = 5, .external_lex_state = 2}, - [558] = {.lex_state = 7, .external_lex_state = 3}, + [557] = {.lex_state = 7, .external_lex_state = 3}, + [558] = {.lex_state = 5, .external_lex_state = 2}, [559] = {.lex_state = 7, .external_lex_state = 3}, [560] = {.lex_state = 7, .external_lex_state = 3}, - [561] = {.lex_state = 5, .external_lex_state = 2}, + [561] = {.lex_state = 7, .external_lex_state = 3}, [562] = {.lex_state = 5, .external_lex_state = 2}, [563] = {.lex_state = 5, .external_lex_state = 2}, [564] = {.lex_state = 5, .external_lex_state = 2}, [565] = {.lex_state = 5, .external_lex_state = 2}, - [566] = {.lex_state = 5, .external_lex_state = 2}, + [566] = {.lex_state = 7, .external_lex_state = 3}, [567] = {.lex_state = 5, .external_lex_state = 2}, - [568] = {.lex_state = 7, .external_lex_state = 3}, - [569] = {.lex_state = 5, .external_lex_state = 2}, - [570] = {.lex_state = 7, .external_lex_state = 3}, - [571] = {.lex_state = 7, .external_lex_state = 3}, - [572] = {.lex_state = 5, .external_lex_state = 2}, - [573] = {.lex_state = 5, .external_lex_state = 2}, + [568] = {.lex_state = 5, .external_lex_state = 2}, + [569] = {.lex_state = 7, .external_lex_state = 3}, + [570] = {.lex_state = 5, .external_lex_state = 2}, + [571] = {.lex_state = 5, .external_lex_state = 2}, + [572] = {.lex_state = 7, .external_lex_state = 3}, + [573] = {.lex_state = 7, .external_lex_state = 3}, [574] = {.lex_state = 7, .external_lex_state = 3}, - [575] = {.lex_state = 7, .external_lex_state = 3}, - [576] = {.lex_state = 5, .external_lex_state = 2}, - [577] = {.lex_state = 5, .external_lex_state = 2}, + [575] = {.lex_state = 5, .external_lex_state = 2}, + [576] = {.lex_state = 7, .external_lex_state = 3}, + [577] = {.lex_state = 7, .external_lex_state = 3}, [578] = {.lex_state = 5, .external_lex_state = 2}, [579] = {.lex_state = 5, .external_lex_state = 2}, [580] = {.lex_state = 5, .external_lex_state = 2}, - [581] = {.lex_state = 7, .external_lex_state = 3}, - [582] = {.lex_state = 7, .external_lex_state = 3}, + [581] = {.lex_state = 5, .external_lex_state = 2}, + [582] = {.lex_state = 5, .external_lex_state = 2}, [583] = {.lex_state = 5, .external_lex_state = 2}, [584] = {.lex_state = 5, .external_lex_state = 2}, [585] = {.lex_state = 5, .external_lex_state = 2}, - [586] = {.lex_state = 7, .external_lex_state = 3}, - [587] = {.lex_state = 7, .external_lex_state = 3}, + [586] = {.lex_state = 5, .external_lex_state = 2}, + [587] = {.lex_state = 5, .external_lex_state = 2}, [588] = {.lex_state = 5, .external_lex_state = 2}, [589] = {.lex_state = 7, .external_lex_state = 3}, [590] = {.lex_state = 7, .external_lex_state = 3}, - [591] = {.lex_state = 7, .external_lex_state = 3}, + [591] = {.lex_state = 5, .external_lex_state = 2}, [592] = {.lex_state = 7, .external_lex_state = 3}, [593] = {.lex_state = 7, .external_lex_state = 3}, [594] = {.lex_state = 7, .external_lex_state = 3}, @@ -6258,7 +6258,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 7, .external_lex_state = 3}, [642] = {.lex_state = 7, .external_lex_state = 3}, [643] = {.lex_state = 7, .external_lex_state = 3}, - [644] = {.lex_state = 5, .external_lex_state = 2}, + [644] = {.lex_state = 7, .external_lex_state = 3}, [645] = {.lex_state = 7, .external_lex_state = 3}, [646] = {.lex_state = 7, .external_lex_state = 3}, [647] = {.lex_state = 7, .external_lex_state = 3}, @@ -6320,18 +6320,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [703] = {.lex_state = 3, .external_lex_state = 3}, [704] = {.lex_state = 3, .external_lex_state = 3}, [705] = {.lex_state = 3, .external_lex_state = 3}, - [706] = {.lex_state = 4, .external_lex_state = 3}, + [706] = {.lex_state = 3, .external_lex_state = 3}, [707] = {.lex_state = 3, .external_lex_state = 3}, - [708] = {.lex_state = 3, .external_lex_state = 3}, - [709] = {.lex_state = 4, .external_lex_state = 3}, - [710] = {.lex_state = 4, .external_lex_state = 3}, + [708] = {.lex_state = 2, .external_lex_state = 3}, + [709] = {.lex_state = 3, .external_lex_state = 3}, + [710] = {.lex_state = 3, .external_lex_state = 3}, [711] = {.lex_state = 3, .external_lex_state = 3}, [712] = {.lex_state = 3, .external_lex_state = 3}, - [713] = {.lex_state = 2, .external_lex_state = 3}, + [713] = {.lex_state = 4, .external_lex_state = 3}, [714] = {.lex_state = 3, .external_lex_state = 3}, [715] = {.lex_state = 4, .external_lex_state = 3}, - [716] = {.lex_state = 3, .external_lex_state = 3}, - [717] = {.lex_state = 3, .external_lex_state = 3}, + [716] = {.lex_state = 4, .external_lex_state = 3}, + [717] = {.lex_state = 4, .external_lex_state = 3}, [718] = {.lex_state = 4, .external_lex_state = 3}, [719] = {.lex_state = 2, .external_lex_state = 3}, [720] = {.lex_state = 2, .external_lex_state = 3}, @@ -6342,28 +6342,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [725] = {.lex_state = 2, .external_lex_state = 3}, [726] = {.lex_state = 2, .external_lex_state = 3}, [727] = {.lex_state = 4, .external_lex_state = 3}, - [728] = {.lex_state = 4, .external_lex_state = 3}, + [728] = {.lex_state = 2, .external_lex_state = 3}, [729] = {.lex_state = 4, .external_lex_state = 3}, - [730] = {.lex_state = 2, .external_lex_state = 3}, - [731] = {.lex_state = 4, .external_lex_state = 3}, + [730] = {.lex_state = 4, .external_lex_state = 3}, + [731] = {.lex_state = 2, .external_lex_state = 3}, [732] = {.lex_state = 4, .external_lex_state = 3}, - [733] = {.lex_state = 4, .external_lex_state = 3}, - [734] = {.lex_state = 2, .external_lex_state = 3}, + [733] = {.lex_state = 2, .external_lex_state = 3}, + [734] = {.lex_state = 4, .external_lex_state = 3}, [735] = {.lex_state = 4, .external_lex_state = 3}, [736] = {.lex_state = 4, .external_lex_state = 3}, [737] = {.lex_state = 4, .external_lex_state = 3}, [738] = {.lex_state = 4, .external_lex_state = 3}, - [739] = {.lex_state = 2, .external_lex_state = 3}, - [740] = {.lex_state = 10, .external_lex_state = 3}, + [739] = {.lex_state = 4, .external_lex_state = 3}, + [740] = {.lex_state = 3, .external_lex_state = 3}, [741] = {.lex_state = 4, .external_lex_state = 3}, [742] = {.lex_state = 4, .external_lex_state = 3}, - [743] = {.lex_state = 2, .external_lex_state = 3}, + [743] = {.lex_state = 4, .external_lex_state = 3}, [744] = {.lex_state = 4, .external_lex_state = 3}, - [745] = {.lex_state = 4, .external_lex_state = 3}, + [745] = {.lex_state = 2, .external_lex_state = 3}, [746] = {.lex_state = 4, .external_lex_state = 3}, [747] = {.lex_state = 4, .external_lex_state = 3}, [748] = {.lex_state = 4, .external_lex_state = 3}, - [749] = {.lex_state = 4, .external_lex_state = 3}, + [749] = {.lex_state = 2, .external_lex_state = 3}, [750] = {.lex_state = 4, .external_lex_state = 3}, [751] = {.lex_state = 4, .external_lex_state = 3}, [752] = {.lex_state = 4, .external_lex_state = 3}, @@ -6371,18 +6371,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [754] = {.lex_state = 4, .external_lex_state = 3}, [755] = {.lex_state = 4, .external_lex_state = 3}, [756] = {.lex_state = 4, .external_lex_state = 3}, - [757] = {.lex_state = 2, .external_lex_state = 3}, + [757] = {.lex_state = 4, .external_lex_state = 3}, [758] = {.lex_state = 4, .external_lex_state = 3}, [759] = {.lex_state = 4, .external_lex_state = 3}, - [760] = {.lex_state = 4, .external_lex_state = 3}, + [760] = {.lex_state = 2, .external_lex_state = 3}, [761] = {.lex_state = 4, .external_lex_state = 3}, [762] = {.lex_state = 4, .external_lex_state = 3}, [763] = {.lex_state = 4, .external_lex_state = 3}, - [764] = {.lex_state = 4, .external_lex_state = 3}, + [764] = {.lex_state = 2, .external_lex_state = 3}, [765] = {.lex_state = 4, .external_lex_state = 3}, [766] = {.lex_state = 4, .external_lex_state = 3}, [767] = {.lex_state = 4, .external_lex_state = 3}, - [768] = {.lex_state = 2, .external_lex_state = 3}, + [768] = {.lex_state = 4, .external_lex_state = 3}, [769] = {.lex_state = 4, .external_lex_state = 3}, [770] = {.lex_state = 4, .external_lex_state = 3}, [771] = {.lex_state = 4, .external_lex_state = 3}, @@ -6391,42 +6391,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [774] = {.lex_state = 2, .external_lex_state = 3}, [775] = {.lex_state = 4, .external_lex_state = 3}, [776] = {.lex_state = 4, .external_lex_state = 3}, - [777] = {.lex_state = 2, .external_lex_state = 3}, - [778] = {.lex_state = 2, .external_lex_state = 3}, - [779] = {.lex_state = 2, .external_lex_state = 3}, - [780] = {.lex_state = 2, .external_lex_state = 3}, - [781] = {.lex_state = 2, .external_lex_state = 3}, - [782] = {.lex_state = 4, .external_lex_state = 3}, + [777] = {.lex_state = 4, .external_lex_state = 3}, + [778] = {.lex_state = 4, .external_lex_state = 3}, + [779] = {.lex_state = 4, .external_lex_state = 3}, + [780] = {.lex_state = 4, .external_lex_state = 3}, + [781] = {.lex_state = 4, .external_lex_state = 3}, + [782] = {.lex_state = 2, .external_lex_state = 3}, [783] = {.lex_state = 4, .external_lex_state = 3}, - [784] = {.lex_state = 2, .external_lex_state = 3}, + [784] = {.lex_state = 4, .external_lex_state = 3}, [785] = {.lex_state = 4, .external_lex_state = 3}, [786] = {.lex_state = 4, .external_lex_state = 3}, - [787] = {.lex_state = 2, .external_lex_state = 3}, - [788] = {.lex_state = 2, .external_lex_state = 3}, + [787] = {.lex_state = 4, .external_lex_state = 3}, + [788] = {.lex_state = 4, .external_lex_state = 3}, [789] = {.lex_state = 4, .external_lex_state = 3}, [790] = {.lex_state = 4, .external_lex_state = 3}, [791] = {.lex_state = 4, .external_lex_state = 3}, - [792] = {.lex_state = 2, .external_lex_state = 3}, + [792] = {.lex_state = 4, .external_lex_state = 3}, [793] = {.lex_state = 4, .external_lex_state = 3}, - [794] = {.lex_state = 4, .external_lex_state = 3}, + [794] = {.lex_state = 2, .external_lex_state = 3}, [795] = {.lex_state = 4, .external_lex_state = 3}, [796] = {.lex_state = 4, .external_lex_state = 3}, - [797] = {.lex_state = 2, .external_lex_state = 3}, - [798] = {.lex_state = 2, .external_lex_state = 3}, - [799] = {.lex_state = 2, .external_lex_state = 3}, + [797] = {.lex_state = 10, .external_lex_state = 3}, + [798] = {.lex_state = 4, .external_lex_state = 3}, + [799] = {.lex_state = 4, .external_lex_state = 3}, [800] = {.lex_state = 4, .external_lex_state = 3}, [801] = {.lex_state = 4, .external_lex_state = 3}, [802] = {.lex_state = 4, .external_lex_state = 3}, - [803] = {.lex_state = 2, .external_lex_state = 3}, + [803] = {.lex_state = 4, .external_lex_state = 3}, [804] = {.lex_state = 4, .external_lex_state = 3}, [805] = {.lex_state = 4, .external_lex_state = 3}, - [806] = {.lex_state = 2, .external_lex_state = 3}, + [806] = {.lex_state = 4, .external_lex_state = 3}, [807] = {.lex_state = 4, .external_lex_state = 3}, [808] = {.lex_state = 4, .external_lex_state = 3}, [809] = {.lex_state = 4, .external_lex_state = 3}, [810] = {.lex_state = 4, .external_lex_state = 3}, [811] = {.lex_state = 4, .external_lex_state = 3}, - [812] = {.lex_state = 2, .external_lex_state = 3}, + [812] = {.lex_state = 4, .external_lex_state = 3}, [813] = {.lex_state = 4, .external_lex_state = 3}, [814] = {.lex_state = 4, .external_lex_state = 3}, [815] = {.lex_state = 4, .external_lex_state = 3}, @@ -6435,15 +6435,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 4, .external_lex_state = 3}, [819] = {.lex_state = 2, .external_lex_state = 3}, [820] = {.lex_state = 4, .external_lex_state = 3}, - [821] = {.lex_state = 4, .external_lex_state = 3}, + [821] = {.lex_state = 2, .external_lex_state = 3}, [822] = {.lex_state = 4, .external_lex_state = 3}, [823] = {.lex_state = 4, .external_lex_state = 3}, - [824] = {.lex_state = 4, .external_lex_state = 3}, - [825] = {.lex_state = 4, .external_lex_state = 3}, - [826] = {.lex_state = 4, .external_lex_state = 3}, + [824] = {.lex_state = 2, .external_lex_state = 3}, + [825] = {.lex_state = 2, .external_lex_state = 3}, + [826] = {.lex_state = 2, .external_lex_state = 3}, [827] = {.lex_state = 4, .external_lex_state = 3}, [828] = {.lex_state = 4, .external_lex_state = 3}, - [829] = {.lex_state = 4, .external_lex_state = 3}, + [829] = {.lex_state = 2, .external_lex_state = 3}, [830] = {.lex_state = 4, .external_lex_state = 3}, [831] = {.lex_state = 4, .external_lex_state = 3}, [832] = {.lex_state = 4, .external_lex_state = 3}, @@ -6453,22 +6453,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 4, .external_lex_state = 3}, [837] = {.lex_state = 4, .external_lex_state = 3}, [838] = {.lex_state = 4, .external_lex_state = 3}, - [839] = {.lex_state = 4, .external_lex_state = 3}, - [840] = {.lex_state = 4, .external_lex_state = 3}, + [839] = {.lex_state = 2, .external_lex_state = 3}, + [840] = {.lex_state = 2, .external_lex_state = 3}, [841] = {.lex_state = 4, .external_lex_state = 3}, [842] = {.lex_state = 4, .external_lex_state = 3}, [843] = {.lex_state = 4, .external_lex_state = 3}, - [844] = {.lex_state = 4, .external_lex_state = 3}, - [845] = {.lex_state = 4, .external_lex_state = 3}, - [846] = {.lex_state = 4, .external_lex_state = 3}, + [844] = {.lex_state = 2, .external_lex_state = 3}, + [845] = {.lex_state = 2, .external_lex_state = 3}, + [846] = {.lex_state = 2, .external_lex_state = 3}, [847] = {.lex_state = 4, .external_lex_state = 3}, [848] = {.lex_state = 4, .external_lex_state = 3}, [849] = {.lex_state = 4, .external_lex_state = 3}, - [850] = {.lex_state = 2, .external_lex_state = 3}, - [851] = {.lex_state = 4, .external_lex_state = 3}, + [850] = {.lex_state = 4, .external_lex_state = 3}, + [851] = {.lex_state = 2, .external_lex_state = 3}, [852] = {.lex_state = 4, .external_lex_state = 3}, [853] = {.lex_state = 4, .external_lex_state = 3}, - [854] = {.lex_state = 4, .external_lex_state = 3}, + [854] = {.lex_state = 2, .external_lex_state = 3}, [855] = {.lex_state = 4, .external_lex_state = 3}, [856] = {.lex_state = 4, .external_lex_state = 3}, [857] = {.lex_state = 4, .external_lex_state = 3}, @@ -6487,50 +6487,50 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [870] = {.lex_state = 4, .external_lex_state = 3}, [871] = {.lex_state = 4, .external_lex_state = 3}, [872] = {.lex_state = 4, .external_lex_state = 3}, - [873] = {.lex_state = 2, .external_lex_state = 3}, + [873] = {.lex_state = 4, .external_lex_state = 3}, [874] = {.lex_state = 4, .external_lex_state = 3}, - [875] = {.lex_state = 2, .external_lex_state = 3}, - [876] = {.lex_state = 4, .external_lex_state = 3}, + [875] = {.lex_state = 4, .external_lex_state = 3}, + [876] = {.lex_state = 2, .external_lex_state = 3}, [877] = {.lex_state = 4, .external_lex_state = 3}, [878] = {.lex_state = 4, .external_lex_state = 3}, [879] = {.lex_state = 4, .external_lex_state = 3}, [880] = {.lex_state = 4, .external_lex_state = 3}, - [881] = {.lex_state = 2, .external_lex_state = 3}, + [881] = {.lex_state = 4, .external_lex_state = 3}, [882] = {.lex_state = 4, .external_lex_state = 3}, [883] = {.lex_state = 2, .external_lex_state = 3}, [884] = {.lex_state = 4, .external_lex_state = 3}, [885] = {.lex_state = 4, .external_lex_state = 3}, [886] = {.lex_state = 4, .external_lex_state = 3}, [887] = {.lex_state = 4, .external_lex_state = 3}, - [888] = {.lex_state = 4, .external_lex_state = 3}, + [888] = {.lex_state = 2, .external_lex_state = 3}, [889] = {.lex_state = 4, .external_lex_state = 3}, [890] = {.lex_state = 4, .external_lex_state = 3}, - [891] = {.lex_state = 2, .external_lex_state = 3}, + [891] = {.lex_state = 4, .external_lex_state = 3}, [892] = {.lex_state = 4, .external_lex_state = 3}, [893] = {.lex_state = 4, .external_lex_state = 3}, [894] = {.lex_state = 2, .external_lex_state = 3}, [895] = {.lex_state = 4, .external_lex_state = 3}, - [896] = {.lex_state = 3, .external_lex_state = 3}, - [897] = {.lex_state = 4, .external_lex_state = 3}, + [896] = {.lex_state = 4, .external_lex_state = 3}, + [897] = {.lex_state = 2, .external_lex_state = 3}, [898] = {.lex_state = 4, .external_lex_state = 3}, [899] = {.lex_state = 4, .external_lex_state = 3}, - [900] = {.lex_state = 2, .external_lex_state = 3}, + [900] = {.lex_state = 4, .external_lex_state = 3}, [901] = {.lex_state = 4, .external_lex_state = 3}, [902] = {.lex_state = 4, .external_lex_state = 3}, [903] = {.lex_state = 4, .external_lex_state = 3}, - [904] = {.lex_state = 4, .external_lex_state = 3}, + [904] = {.lex_state = 2, .external_lex_state = 3}, [905] = {.lex_state = 4, .external_lex_state = 3}, [906] = {.lex_state = 4, .external_lex_state = 3}, [907] = {.lex_state = 4, .external_lex_state = 3}, [908] = {.lex_state = 4, .external_lex_state = 3}, [909] = {.lex_state = 4, .external_lex_state = 3}, [910] = {.lex_state = 4, .external_lex_state = 3}, - [911] = {.lex_state = 4, .external_lex_state = 3}, + [911] = {.lex_state = 2, .external_lex_state = 3}, [912] = {.lex_state = 4, .external_lex_state = 3}, - [913] = {.lex_state = 2, .external_lex_state = 3}, + [913] = {.lex_state = 4, .external_lex_state = 3}, [914] = {.lex_state = 4, .external_lex_state = 3}, [915] = {.lex_state = 4, .external_lex_state = 3}, - [916] = {.lex_state = 2, .external_lex_state = 3}, + [916] = {.lex_state = 4, .external_lex_state = 3}, [917] = {.lex_state = 4, .external_lex_state = 3}, [918] = {.lex_state = 4, .external_lex_state = 3}, [919] = {.lex_state = 4, .external_lex_state = 3}, @@ -6540,11 +6540,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 4, .external_lex_state = 3}, [924] = {.lex_state = 4, .external_lex_state = 3}, [925] = {.lex_state = 4, .external_lex_state = 3}, - [926] = {.lex_state = 2, .external_lex_state = 3}, + [926] = {.lex_state = 4, .external_lex_state = 3}, [927] = {.lex_state = 4, .external_lex_state = 3}, [928] = {.lex_state = 4, .external_lex_state = 3}, [929] = {.lex_state = 4, .external_lex_state = 3}, - [930] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 4, .external_lex_state = 3}, [931] = {.lex_state = 4, .external_lex_state = 3}, [932] = {.lex_state = 4, .external_lex_state = 3}, [933] = {.lex_state = 4, .external_lex_state = 3}, @@ -6561,16 +6561,16 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [944] = {.lex_state = 4, .external_lex_state = 3}, [945] = {.lex_state = 4, .external_lex_state = 3}, [946] = {.lex_state = 4, .external_lex_state = 3}, - [947] = {.lex_state = 4, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, [948] = {.lex_state = 4, .external_lex_state = 3}, - [949] = {.lex_state = 4, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, [950] = {.lex_state = 4, .external_lex_state = 3}, [951] = {.lex_state = 4, .external_lex_state = 3}, [952] = {.lex_state = 4, .external_lex_state = 3}, [953] = {.lex_state = 4, .external_lex_state = 3}, - [954] = {.lex_state = 4, .external_lex_state = 3}, - [955] = {.lex_state = 4, .external_lex_state = 3}, - [956] = {.lex_state = 4, .external_lex_state = 3}, + [954] = {.lex_state = 2, .external_lex_state = 3}, + [955] = {.lex_state = 2, .external_lex_state = 3}, + [956] = {.lex_state = 2, .external_lex_state = 3}, [957] = {.lex_state = 2, .external_lex_state = 3}, [958] = {.lex_state = 2, .external_lex_state = 3}, [959] = {.lex_state = 2, .external_lex_state = 3}, @@ -6683,43 +6683,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1066] = {.lex_state = 7, .external_lex_state = 3}, [1067] = {.lex_state = 7, .external_lex_state = 3}, [1068] = {.lex_state = 7, .external_lex_state = 3}, - [1069] = {.lex_state = 2, .external_lex_state = 3}, - [1070] = {.lex_state = 7, .external_lex_state = 3}, + [1069] = {.lex_state = 7, .external_lex_state = 3}, + [1070] = {.lex_state = 2, .external_lex_state = 3}, [1071] = {.lex_state = 7, .external_lex_state = 3}, - [1072] = {.lex_state = 2, .external_lex_state = 3}, + [1072] = {.lex_state = 5, .external_lex_state = 2}, [1073] = {.lex_state = 7, .external_lex_state = 3}, - [1074] = {.lex_state = 7, .external_lex_state = 3}, - [1075] = {.lex_state = 5, .external_lex_state = 2}, - [1076] = {.lex_state = 5, .external_lex_state = 2}, - [1077] = {.lex_state = 2, .external_lex_state = 3}, - [1078] = {.lex_state = 7, .external_lex_state = 3}, + [1074] = {.lex_state = 2, .external_lex_state = 3}, + [1075] = {.lex_state = 2, .external_lex_state = 3}, + [1076] = {.lex_state = 7, .external_lex_state = 3}, + [1077] = {.lex_state = 5, .external_lex_state = 2}, + [1078] = {.lex_state = 2, .external_lex_state = 3}, [1079] = {.lex_state = 7, .external_lex_state = 3}, - [1080] = {.lex_state = 2, .external_lex_state = 3}, - [1081] = {.lex_state = 2, .external_lex_state = 3}, + [1080] = {.lex_state = 5, .external_lex_state = 2}, + [1081] = {.lex_state = 7, .external_lex_state = 3}, [1082] = {.lex_state = 2, .external_lex_state = 3}, - [1083] = {.lex_state = 7, .external_lex_state = 3}, - [1084] = {.lex_state = 5, .external_lex_state = 2}, + [1083] = {.lex_state = 5, .external_lex_state = 2}, + [1084] = {.lex_state = 2, .external_lex_state = 3}, [1085] = {.lex_state = 7, .external_lex_state = 3}, [1086] = {.lex_state = 7, .external_lex_state = 3}, - [1087] = {.lex_state = 5, .external_lex_state = 2}, - [1088] = {.lex_state = 2, .external_lex_state = 3}, + [1087] = {.lex_state = 2, .external_lex_state = 3}, + [1088] = {.lex_state = 7, .external_lex_state = 3}, [1089] = {.lex_state = 7, .external_lex_state = 3}, [1090] = {.lex_state = 2, .external_lex_state = 3}, [1091] = {.lex_state = 2, .external_lex_state = 3}, - [1092] = {.lex_state = 2, .external_lex_state = 3}, + [1092] = {.lex_state = 5, .external_lex_state = 2}, [1093] = {.lex_state = 2, .external_lex_state = 3}, [1094] = {.lex_state = 2, .external_lex_state = 3}, [1095] = {.lex_state = 2, .external_lex_state = 3}, [1096] = {.lex_state = 2, .external_lex_state = 3}, - [1097] = {.lex_state = 2, .external_lex_state = 3}, + [1097] = {.lex_state = 7, .external_lex_state = 3}, [1098] = {.lex_state = 2, .external_lex_state = 3}, [1099] = {.lex_state = 2, .external_lex_state = 3}, - [1100] = {.lex_state = 2, .external_lex_state = 3}, + [1100] = {.lex_state = 7, .external_lex_state = 3}, [1101] = {.lex_state = 2, .external_lex_state = 3}, [1102] = {.lex_state = 2, .external_lex_state = 3}, [1103] = {.lex_state = 2, .external_lex_state = 3}, [1104] = {.lex_state = 2, .external_lex_state = 3}, - [1105] = {.lex_state = 5, .external_lex_state = 2}, + [1105] = {.lex_state = 2, .external_lex_state = 3}, [1106] = {.lex_state = 2, .external_lex_state = 3}, [1107] = {.lex_state = 2, .external_lex_state = 3}, [1108] = {.lex_state = 2, .external_lex_state = 3}, @@ -6728,7 +6728,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1111] = {.lex_state = 2, .external_lex_state = 3}, [1112] = {.lex_state = 2, .external_lex_state = 3}, [1113] = {.lex_state = 2, .external_lex_state = 3}, - [1114] = {.lex_state = 7, .external_lex_state = 3}, + [1114] = {.lex_state = 2, .external_lex_state = 3}, [1115] = {.lex_state = 2, .external_lex_state = 3}, [1116] = {.lex_state = 2, .external_lex_state = 3}, [1117] = {.lex_state = 2, .external_lex_state = 3}, @@ -6751,7 +6751,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1134] = {.lex_state = 2, .external_lex_state = 3}, [1135] = {.lex_state = 2, .external_lex_state = 3}, [1136] = {.lex_state = 2, .external_lex_state = 3}, - [1137] = {.lex_state = 7, .external_lex_state = 3}, + [1137] = {.lex_state = 2, .external_lex_state = 3}, [1138] = {.lex_state = 2, .external_lex_state = 3}, [1139] = {.lex_state = 2, .external_lex_state = 3}, [1140] = {.lex_state = 2, .external_lex_state = 3}, @@ -6785,57 +6785,57 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1168] = {.lex_state = 2, .external_lex_state = 3}, [1169] = {.lex_state = 2, .external_lex_state = 3}, [1170] = {.lex_state = 2, .external_lex_state = 3}, - [1171] = {.lex_state = 2, .external_lex_state = 3}, + [1171] = {.lex_state = 5, .external_lex_state = 2}, [1172] = {.lex_state = 2, .external_lex_state = 3}, - [1173] = {.lex_state = 5, .external_lex_state = 2}, + [1173] = {.lex_state = 2, .external_lex_state = 3}, [1174] = {.lex_state = 2, .external_lex_state = 3}, [1175] = {.lex_state = 2, .external_lex_state = 3}, - [1176] = {.lex_state = 2, .external_lex_state = 3}, + [1176] = {.lex_state = 7, .external_lex_state = 3}, [1177] = {.lex_state = 2, .external_lex_state = 3}, [1178] = {.lex_state = 2, .external_lex_state = 3}, - [1179] = {.lex_state = 2, .external_lex_state = 3}, - [1180] = {.lex_state = 5, .external_lex_state = 2}, - [1181] = {.lex_state = 5, .external_lex_state = 2}, - [1182] = {.lex_state = 2, .external_lex_state = 3}, - [1183] = {.lex_state = 2, .external_lex_state = 3}, + [1179] = {.lex_state = 5, .external_lex_state = 2}, + [1180] = {.lex_state = 2, .external_lex_state = 3}, + [1181] = {.lex_state = 2, .external_lex_state = 3}, + [1182] = {.lex_state = 5, .external_lex_state = 2}, + [1183] = {.lex_state = 7, .external_lex_state = 3}, [1184] = {.lex_state = 2, .external_lex_state = 3}, [1185] = {.lex_state = 7, .external_lex_state = 3}, [1186] = {.lex_state = 2, .external_lex_state = 3}, [1187] = {.lex_state = 2, .external_lex_state = 3}, - [1188] = {.lex_state = 2, .external_lex_state = 3}, + [1188] = {.lex_state = 7, .external_lex_state = 3}, [1189] = {.lex_state = 2, .external_lex_state = 3}, [1190] = {.lex_state = 2, .external_lex_state = 3}, - [1191] = {.lex_state = 7, .external_lex_state = 3}, - [1192] = {.lex_state = 7, .external_lex_state = 3}, + [1191] = {.lex_state = 2, .external_lex_state = 3}, + [1192] = {.lex_state = 2, .external_lex_state = 3}, [1193] = {.lex_state = 2, .external_lex_state = 3}, - [1194] = {.lex_state = 5, .external_lex_state = 2}, + [1194] = {.lex_state = 2, .external_lex_state = 3}, [1195] = {.lex_state = 2, .external_lex_state = 3}, [1196] = {.lex_state = 2, .external_lex_state = 3}, [1197] = {.lex_state = 2, .external_lex_state = 3}, - [1198] = {.lex_state = 2, .external_lex_state = 3}, + [1198] = {.lex_state = 7, .external_lex_state = 3}, [1199] = {.lex_state = 2, .external_lex_state = 3}, [1200] = {.lex_state = 2, .external_lex_state = 3}, [1201] = {.lex_state = 2, .external_lex_state = 3}, [1202] = {.lex_state = 2, .external_lex_state = 3}, [1203] = {.lex_state = 2, .external_lex_state = 3}, - [1204] = {.lex_state = 7, .external_lex_state = 3}, - [1205] = {.lex_state = 2, .external_lex_state = 3}, + [1204] = {.lex_state = 2, .external_lex_state = 3}, + [1205] = {.lex_state = 5, .external_lex_state = 2}, [1206] = {.lex_state = 2, .external_lex_state = 3}, - [1207] = {.lex_state = 2, .external_lex_state = 3}, - [1208] = {.lex_state = 2, .external_lex_state = 3}, - [1209] = {.lex_state = 7, .external_lex_state = 3}, - [1210] = {.lex_state = 7, .external_lex_state = 3}, - [1211] = {.lex_state = 7, .external_lex_state = 3}, + [1207] = {.lex_state = 7, .external_lex_state = 3}, + [1208] = {.lex_state = 7, .external_lex_state = 3}, + [1209] = {.lex_state = 2, .external_lex_state = 3}, + [1210] = {.lex_state = 2, .external_lex_state = 3}, + [1211] = {.lex_state = 2, .external_lex_state = 3}, [1212] = {.lex_state = 2, .external_lex_state = 3}, [1213] = {.lex_state = 2, .external_lex_state = 3}, [1214] = {.lex_state = 2, .external_lex_state = 3}, [1215] = {.lex_state = 2, .external_lex_state = 3}, [1216] = {.lex_state = 2, .external_lex_state = 3}, - [1217] = {.lex_state = 5, .external_lex_state = 2}, - [1218] = {.lex_state = 7, .external_lex_state = 3}, - [1219] = {.lex_state = 7, .external_lex_state = 3}, + [1217] = {.lex_state = 2, .external_lex_state = 3}, + [1218] = {.lex_state = 2, .external_lex_state = 3}, + [1219] = {.lex_state = 2, .external_lex_state = 3}, [1220] = {.lex_state = 7, .external_lex_state = 3}, - [1221] = {.lex_state = 7, .external_lex_state = 3}, + [1221] = {.lex_state = 5, .external_lex_state = 2}, [1222] = {.lex_state = 7, .external_lex_state = 3}, [1223] = {.lex_state = 7, .external_lex_state = 3}, [1224] = {.lex_state = 7, .external_lex_state = 3}, @@ -6854,11 +6854,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1237] = {.lex_state = 7, .external_lex_state = 3}, [1238] = {.lex_state = 7, .external_lex_state = 3}, [1239] = {.lex_state = 7, .external_lex_state = 3}, - [1240] = {.lex_state = 17, .external_lex_state = 3}, - [1241] = {.lex_state = 17, .external_lex_state = 3}, - [1242] = {.lex_state = 9, .external_lex_state = 3}, - [1243] = {.lex_state = 9, .external_lex_state = 3}, - [1244] = {.lex_state = 9, .external_lex_state = 3}, + [1240] = {.lex_state = 7, .external_lex_state = 3}, + [1241] = {.lex_state = 7, .external_lex_state = 3}, + [1242] = {.lex_state = 7, .external_lex_state = 3}, + [1243] = {.lex_state = 17, .external_lex_state = 3}, + [1244] = {.lex_state = 17, .external_lex_state = 3}, [1245] = {.lex_state = 9, .external_lex_state = 3}, [1246] = {.lex_state = 9, .external_lex_state = 3}, [1247] = {.lex_state = 9, .external_lex_state = 3}, @@ -6868,58 +6868,58 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1251] = {.lex_state = 9, .external_lex_state = 3}, [1252] = {.lex_state = 9, .external_lex_state = 3}, [1253] = {.lex_state = 9, .external_lex_state = 3}, - [1254] = {.lex_state = 17, .external_lex_state = 3}, - [1255] = {.lex_state = 7, .external_lex_state = 3}, - [1256] = {.lex_state = 17, .external_lex_state = 3}, + [1254] = {.lex_state = 9, .external_lex_state = 3}, + [1255] = {.lex_state = 9, .external_lex_state = 3}, + [1256] = {.lex_state = 9, .external_lex_state = 3}, [1257] = {.lex_state = 7, .external_lex_state = 3}, [1258] = {.lex_state = 17, .external_lex_state = 3}, [1259] = {.lex_state = 17, .external_lex_state = 3}, - [1260] = {.lex_state = 7, .external_lex_state = 3}, + [1260] = {.lex_state = 17, .external_lex_state = 3}, [1261] = {.lex_state = 7, .external_lex_state = 3}, [1262] = {.lex_state = 7, .external_lex_state = 3}, - [1263] = {.lex_state = 7, .external_lex_state = 3}, + [1263] = {.lex_state = 17, .external_lex_state = 3}, [1264] = {.lex_state = 7, .external_lex_state = 3}, - [1265] = {.lex_state = 17, .external_lex_state = 3}, + [1265] = {.lex_state = 7, .external_lex_state = 3}, [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 7, .external_lex_state = 3}, + [1267] = {.lex_state = 9, .external_lex_state = 3}, [1268] = {.lex_state = 7, .external_lex_state = 3}, [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, + [1270] = {.lex_state = 9, .external_lex_state = 3}, [1271] = {.lex_state = 7, .external_lex_state = 3}, [1272] = {.lex_state = 7, .external_lex_state = 3}, - [1273] = {.lex_state = 9, .external_lex_state = 3}, - [1274] = {.lex_state = 9, .external_lex_state = 3}, + [1273] = {.lex_state = 7, .external_lex_state = 3}, + [1274] = {.lex_state = 7, .external_lex_state = 3}, [1275] = {.lex_state = 7, .external_lex_state = 3}, [1276] = {.lex_state = 9, .external_lex_state = 3}, [1277] = {.lex_state = 7, .external_lex_state = 3}, [1278] = {.lex_state = 7, .external_lex_state = 3}, [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 7, .external_lex_state = 3}, - [1281] = {.lex_state = 9, .external_lex_state = 3}, - [1282] = {.lex_state = 17, .external_lex_state = 3}, + [1280] = {.lex_state = 17, .external_lex_state = 3}, + [1281] = {.lex_state = 7, .external_lex_state = 3}, + [1282] = {.lex_state = 7, .external_lex_state = 3}, [1283] = {.lex_state = 17, .external_lex_state = 3}, [1284] = {.lex_state = 17, .external_lex_state = 3}, [1285] = {.lex_state = 17, .external_lex_state = 3}, [1286] = {.lex_state = 17, .external_lex_state = 3}, [1287] = {.lex_state = 17, .external_lex_state = 3}, [1288] = {.lex_state = 7, .external_lex_state = 3}, - [1289] = {.lex_state = 17, .external_lex_state = 3}, + [1289] = {.lex_state = 7, .external_lex_state = 3}, [1290] = {.lex_state = 7, .external_lex_state = 3}, [1291] = {.lex_state = 17, .external_lex_state = 3}, - [1292] = {.lex_state = 17, .external_lex_state = 3}, + [1292] = {.lex_state = 9, .external_lex_state = 3}, [1293] = {.lex_state = 17, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, + [1294] = {.lex_state = 17, .external_lex_state = 3}, [1295] = {.lex_state = 17, .external_lex_state = 3}, - [1296] = {.lex_state = 7, .external_lex_state = 3}, - [1297] = {.lex_state = 17, .external_lex_state = 3}, + [1296] = {.lex_state = 17, .external_lex_state = 3}, + [1297] = {.lex_state = 7, .external_lex_state = 3}, [1298] = {.lex_state = 7, .external_lex_state = 3}, - [1299] = {.lex_state = 17, .external_lex_state = 3}, + [1299] = {.lex_state = 7, .external_lex_state = 3}, [1300] = {.lex_state = 17, .external_lex_state = 3}, [1301] = {.lex_state = 17, .external_lex_state = 3}, [1302] = {.lex_state = 17, .external_lex_state = 3}, [1303] = {.lex_state = 17, .external_lex_state = 3}, [1304] = {.lex_state = 17, .external_lex_state = 3}, - [1305] = {.lex_state = 7, .external_lex_state = 3}, + [1305] = {.lex_state = 17, .external_lex_state = 3}, [1306] = {.lex_state = 17, .external_lex_state = 3}, [1307] = {.lex_state = 17, .external_lex_state = 3}, [1308] = {.lex_state = 17, .external_lex_state = 3}, @@ -6931,7 +6931,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1314] = {.lex_state = 17, .external_lex_state = 3}, [1315] = {.lex_state = 17, .external_lex_state = 3}, [1316] = {.lex_state = 17, .external_lex_state = 3}, - [1317] = {.lex_state = 17, .external_lex_state = 3}, + [1317] = {.lex_state = 7, .external_lex_state = 3}, [1318] = {.lex_state = 17, .external_lex_state = 3}, [1319] = {.lex_state = 17, .external_lex_state = 3}, [1320] = {.lex_state = 17, .external_lex_state = 3}, @@ -6944,42 +6944,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1327] = {.lex_state = 17, .external_lex_state = 3}, [1328] = {.lex_state = 17, .external_lex_state = 3}, [1329] = {.lex_state = 17, .external_lex_state = 3}, - [1330] = {.lex_state = 7, .external_lex_state = 3}, - [1331] = {.lex_state = 9, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, + [1330] = {.lex_state = 17, .external_lex_state = 3}, + [1331] = {.lex_state = 17, .external_lex_state = 3}, + [1332] = {.lex_state = 17, .external_lex_state = 3}, [1333] = {.lex_state = 9, .external_lex_state = 3}, - [1334] = {.lex_state = 7, .external_lex_state = 3}, + [1334] = {.lex_state = 9, .external_lex_state = 3}, [1335] = {.lex_state = 9, .external_lex_state = 3}, [1336] = {.lex_state = 7, .external_lex_state = 3}, - [1337] = {.lex_state = 9, .external_lex_state = 3}, + [1337] = {.lex_state = 7, .external_lex_state = 3}, [1338] = {.lex_state = 9, .external_lex_state = 3}, [1339] = {.lex_state = 9, .external_lex_state = 3}, - [1340] = {.lex_state = 9, .external_lex_state = 3}, - [1341] = {.lex_state = 9, .external_lex_state = 3}, - [1342] = {.lex_state = 9, .external_lex_state = 3}, + [1340] = {.lex_state = 7, .external_lex_state = 3}, + [1341] = {.lex_state = 7, .external_lex_state = 3}, + [1342] = {.lex_state = 7, .external_lex_state = 3}, [1343] = {.lex_state = 9, .external_lex_state = 3}, - [1344] = {.lex_state = 17, .external_lex_state = 3}, - [1345] = {.lex_state = 17, .external_lex_state = 3}, - [1346] = {.lex_state = 7, .external_lex_state = 3}, - [1347] = {.lex_state = 7, .external_lex_state = 3}, + [1344] = {.lex_state = 9, .external_lex_state = 3}, + [1345] = {.lex_state = 9, .external_lex_state = 3}, + [1346] = {.lex_state = 9, .external_lex_state = 3}, + [1347] = {.lex_state = 9, .external_lex_state = 3}, [1348] = {.lex_state = 9, .external_lex_state = 3}, - [1349] = {.lex_state = 7, .external_lex_state = 3}, - [1350] = {.lex_state = 9, .external_lex_state = 3}, + [1349] = {.lex_state = 9, .external_lex_state = 3}, + [1350] = {.lex_state = 17, .external_lex_state = 3}, [1351] = {.lex_state = 9, .external_lex_state = 3}, - [1352] = {.lex_state = 7, .external_lex_state = 3}, + [1352] = {.lex_state = 17, .external_lex_state = 3}, [1353] = {.lex_state = 17, .external_lex_state = 3}, - [1354] = {.lex_state = 13, .external_lex_state = 3}, - [1355] = {.lex_state = 17, .external_lex_state = 3}, - [1356] = {.lex_state = 17, .external_lex_state = 3}, + [1354] = {.lex_state = 7, .external_lex_state = 3}, + [1355] = {.lex_state = 7, .external_lex_state = 3}, + [1356] = {.lex_state = 7, .external_lex_state = 3}, [1357] = {.lex_state = 17, .external_lex_state = 3}, - [1358] = {.lex_state = 13, .external_lex_state = 3}, + [1358] = {.lex_state = 17, .external_lex_state = 3}, [1359] = {.lex_state = 17, .external_lex_state = 3}, - [1360] = {.lex_state = 17, .external_lex_state = 3}, + [1360] = {.lex_state = 13, .external_lex_state = 3}, [1361] = {.lex_state = 17, .external_lex_state = 3}, - [1362] = {.lex_state = 17, .external_lex_state = 3}, + [1362] = {.lex_state = 13, .external_lex_state = 3}, [1363] = {.lex_state = 17, .external_lex_state = 3}, [1364] = {.lex_state = 17, .external_lex_state = 3}, - [1365] = {.lex_state = 13, .external_lex_state = 3}, + [1365] = {.lex_state = 17, .external_lex_state = 3}, [1366] = {.lex_state = 17, .external_lex_state = 3}, [1367] = {.lex_state = 17, .external_lex_state = 3}, [1368] = {.lex_state = 17, .external_lex_state = 3}, @@ -6995,37 +6995,37 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1378] = {.lex_state = 17, .external_lex_state = 3}, [1379] = {.lex_state = 17, .external_lex_state = 3}, [1380] = {.lex_state = 17, .external_lex_state = 3}, - [1381] = {.lex_state = 17, .external_lex_state = 3}, + [1381] = {.lex_state = 13, .external_lex_state = 3}, [1382] = {.lex_state = 17, .external_lex_state = 3}, - [1383] = {.lex_state = 13, .external_lex_state = 3}, + [1383] = {.lex_state = 17, .external_lex_state = 3}, [1384] = {.lex_state = 17, .external_lex_state = 3}, - [1385] = {.lex_state = 17, .external_lex_state = 3}, + [1385] = {.lex_state = 13, .external_lex_state = 3}, [1386] = {.lex_state = 17, .external_lex_state = 3}, [1387] = {.lex_state = 17, .external_lex_state = 3}, [1388] = {.lex_state = 17, .external_lex_state = 3}, - [1389] = {.lex_state = 9, .external_lex_state = 3}, + [1389] = {.lex_state = 17, .external_lex_state = 3}, [1390] = {.lex_state = 17, .external_lex_state = 3}, - [1391] = {.lex_state = 7, .external_lex_state = 3}, - [1392] = {.lex_state = 9, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, - [1394] = {.lex_state = 9, .external_lex_state = 3}, + [1391] = {.lex_state = 17, .external_lex_state = 3}, + [1392] = {.lex_state = 17, .external_lex_state = 3}, + [1393] = {.lex_state = 9, .external_lex_state = 3}, + [1394] = {.lex_state = 7, .external_lex_state = 3}, [1395] = {.lex_state = 9, .external_lex_state = 3}, - [1396] = {.lex_state = 14, .external_lex_state = 3}, + [1396] = {.lex_state = 9, .external_lex_state = 3}, [1397] = {.lex_state = 7, .external_lex_state = 3}, - [1398] = {.lex_state = 7, .external_lex_state = 3}, - [1399] = {.lex_state = 9, .external_lex_state = 3}, - [1400] = {.lex_state = 9, .external_lex_state = 3}, - [1401] = {.lex_state = 9, .external_lex_state = 3}, - [1402] = {.lex_state = 1, .external_lex_state = 2}, + [1398] = {.lex_state = 9, .external_lex_state = 3}, + [1399] = {.lex_state = 1, .external_lex_state = 2}, + [1400] = {.lex_state = 1, .external_lex_state = 2}, + [1401] = {.lex_state = 14, .external_lex_state = 3}, + [1402] = {.lex_state = 9, .external_lex_state = 3}, [1403] = {.lex_state = 9, .external_lex_state = 3}, - [1404] = {.lex_state = 7, .external_lex_state = 3}, + [1404] = {.lex_state = 9, .external_lex_state = 3}, [1405] = {.lex_state = 9, .external_lex_state = 3}, - [1406] = {.lex_state = 1, .external_lex_state = 2}, + [1406] = {.lex_state = 9, .external_lex_state = 3}, [1407] = {.lex_state = 7, .external_lex_state = 3}, [1408] = {.lex_state = 7, .external_lex_state = 3}, [1409] = {.lex_state = 7, .external_lex_state = 3}, [1410] = {.lex_state = 7, .external_lex_state = 3}, - [1411] = {.lex_state = 7, .external_lex_state = 3}, + [1411] = {.lex_state = 14, .external_lex_state = 3}, [1412] = {.lex_state = 7, .external_lex_state = 3}, [1413] = {.lex_state = 14, .external_lex_state = 3}, [1414] = {.lex_state = 7, .external_lex_state = 3}, @@ -7034,8 +7034,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1417] = {.lex_state = 7, .external_lex_state = 3}, [1418] = {.lex_state = 7, .external_lex_state = 3}, [1419] = {.lex_state = 7, .external_lex_state = 3}, - [1420] = {.lex_state = 7, .external_lex_state = 3}, - [1421] = {.lex_state = 4, .external_lex_state = 3}, + [1420] = {.lex_state = 4, .external_lex_state = 3}, + [1421] = {.lex_state = 7, .external_lex_state = 3}, [1422] = {.lex_state = 7, .external_lex_state = 3}, [1423] = {.lex_state = 7, .external_lex_state = 3}, [1424] = {.lex_state = 7, .external_lex_state = 3}, @@ -7043,7 +7043,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1426] = {.lex_state = 7, .external_lex_state = 3}, [1427] = {.lex_state = 7, .external_lex_state = 3}, [1428] = {.lex_state = 7, .external_lex_state = 3}, - [1429] = {.lex_state = 14, .external_lex_state = 3}, + [1429] = {.lex_state = 7, .external_lex_state = 3}, [1430] = {.lex_state = 7, .external_lex_state = 3}, [1431] = {.lex_state = 7, .external_lex_state = 3}, [1432] = {.lex_state = 7, .external_lex_state = 3}, @@ -7055,555 +7055,555 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1438] = {.lex_state = 7, .external_lex_state = 3}, [1439] = {.lex_state = 7, .external_lex_state = 3}, [1440] = {.lex_state = 7, .external_lex_state = 3}, - [1441] = {.lex_state = 17, .external_lex_state = 3}, - [1442] = {.lex_state = 4, .external_lex_state = 3}, - [1443] = {.lex_state = 4, .external_lex_state = 3}, - [1444] = {.lex_state = 14, .external_lex_state = 3}, - [1445] = {.lex_state = 14, .external_lex_state = 3}, - [1446] = {.lex_state = 7, .external_lex_state = 3}, - [1447] = {.lex_state = 7, .external_lex_state = 3}, - [1448] = {.lex_state = 7, .external_lex_state = 3}, - [1449] = {.lex_state = 0, .external_lex_state = 3}, + [1441] = {.lex_state = 7, .external_lex_state = 3}, + [1442] = {.lex_state = 7, .external_lex_state = 3}, + [1443] = {.lex_state = 7, .external_lex_state = 3}, + [1444] = {.lex_state = 7, .external_lex_state = 3}, + [1445] = {.lex_state = 7, .external_lex_state = 3}, + [1446] = {.lex_state = 17, .external_lex_state = 3}, + [1447] = {.lex_state = 17, .external_lex_state = 3}, + [1448] = {.lex_state = 17, .external_lex_state = 3}, + [1449] = {.lex_state = 7, .external_lex_state = 3}, [1450] = {.lex_state = 7, .external_lex_state = 3}, [1451] = {.lex_state = 7, .external_lex_state = 3}, [1452] = {.lex_state = 7, .external_lex_state = 3}, - [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 17, .external_lex_state = 3}, - [1455] = {.lex_state = 17, .external_lex_state = 3}, - [1456] = {.lex_state = 14, .external_lex_state = 3}, - [1457] = {.lex_state = 17, .external_lex_state = 3}, - [1458] = {.lex_state = 14, .external_lex_state = 3}, - [1459] = {.lex_state = 14, .external_lex_state = 3}, - [1460] = {.lex_state = 7, .external_lex_state = 3}, - [1461] = {.lex_state = 14, .external_lex_state = 3}, - [1462] = {.lex_state = 7, .external_lex_state = 3}, + [1453] = {.lex_state = 17, .external_lex_state = 3}, + [1454] = {.lex_state = 13, .external_lex_state = 3}, + [1455] = {.lex_state = 14, .external_lex_state = 3}, + [1456] = {.lex_state = 7, .external_lex_state = 3}, + [1457] = {.lex_state = 14, .external_lex_state = 3}, + [1458] = {.lex_state = 7, .external_lex_state = 3}, + [1459] = {.lex_state = 7, .external_lex_state = 3}, + [1460] = {.lex_state = 14, .external_lex_state = 3}, + [1461] = {.lex_state = 7, .external_lex_state = 3}, + [1462] = {.lex_state = 14, .external_lex_state = 3}, [1463] = {.lex_state = 7, .external_lex_state = 3}, [1464] = {.lex_state = 7, .external_lex_state = 3}, - [1465] = {.lex_state = 7, .external_lex_state = 3}, - [1466] = {.lex_state = 14, .external_lex_state = 3}, + [1465] = {.lex_state = 14, .external_lex_state = 3}, + [1466] = {.lex_state = 7, .external_lex_state = 3}, [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 14, .external_lex_state = 3}, - [1469] = {.lex_state = 17, .external_lex_state = 3}, - [1470] = {.lex_state = 7, .external_lex_state = 3}, - [1471] = {.lex_state = 13, .external_lex_state = 3}, - [1472] = {.lex_state = 7, .external_lex_state = 3}, - [1473] = {.lex_state = 14, .external_lex_state = 3}, + [1468] = {.lex_state = 7, .external_lex_state = 3}, + [1469] = {.lex_state = 7, .external_lex_state = 3}, + [1470] = {.lex_state = 4, .external_lex_state = 3}, + [1471] = {.lex_state = 4, .external_lex_state = 3}, + [1472] = {.lex_state = 17, .external_lex_state = 3}, + [1473] = {.lex_state = 17, .external_lex_state = 3}, [1474] = {.lex_state = 7, .external_lex_state = 3}, - [1475] = {.lex_state = 17, .external_lex_state = 3}, - [1476] = {.lex_state = 17, .external_lex_state = 3}, + [1475] = {.lex_state = 14, .external_lex_state = 3}, + [1476] = {.lex_state = 0, .external_lex_state = 3}, [1477] = {.lex_state = 7, .external_lex_state = 3}, - [1478] = {.lex_state = 7, .external_lex_state = 3}, - [1479] = {.lex_state = 4, .external_lex_state = 3}, - [1480] = {.lex_state = 4, .external_lex_state = 3}, - [1481] = {.lex_state = 17, .external_lex_state = 3}, + [1478] = {.lex_state = 4, .external_lex_state = 3}, + [1479] = {.lex_state = 17, .external_lex_state = 3}, + [1480] = {.lex_state = 7, .external_lex_state = 3}, + [1481] = {.lex_state = 7, .external_lex_state = 3}, [1482] = {.lex_state = 7, .external_lex_state = 3}, - [1483] = {.lex_state = 7, .external_lex_state = 3}, - [1484] = {.lex_state = 7, .external_lex_state = 3}, + [1483] = {.lex_state = 14, .external_lex_state = 3}, + [1484] = {.lex_state = 14, .external_lex_state = 3}, [1485] = {.lex_state = 7, .external_lex_state = 3}, - [1486] = {.lex_state = 7, .external_lex_state = 3}, - [1487] = {.lex_state = 7, .external_lex_state = 3}, - [1488] = {.lex_state = 0, .external_lex_state = 3}, - [1489] = {.lex_state = 7, .external_lex_state = 3}, + [1486] = {.lex_state = 17, .external_lex_state = 3}, + [1487] = {.lex_state = 14, .external_lex_state = 3}, + [1488] = {.lex_state = 7, .external_lex_state = 3}, + [1489] = {.lex_state = 4, .external_lex_state = 3}, [1490] = {.lex_state = 7, .external_lex_state = 3}, [1491] = {.lex_state = 7, .external_lex_state = 3}, - [1492] = {.lex_state = 10, .external_lex_state = 3}, + [1492] = {.lex_state = 7, .external_lex_state = 3}, [1493] = {.lex_state = 0, .external_lex_state = 3}, [1494] = {.lex_state = 7, .external_lex_state = 3}, [1495] = {.lex_state = 0, .external_lex_state = 3}, [1496] = {.lex_state = 0, .external_lex_state = 3}, [1497] = {.lex_state = 7, .external_lex_state = 3}, - [1498] = {.lex_state = 0, .external_lex_state = 3}, - [1499] = {.lex_state = 7, .external_lex_state = 3}, - [1500] = {.lex_state = 0, .external_lex_state = 3}, + [1498] = {.lex_state = 14, .external_lex_state = 3}, + [1499] = {.lex_state = 10, .external_lex_state = 3}, + [1500] = {.lex_state = 4, .external_lex_state = 3}, [1501] = {.lex_state = 7, .external_lex_state = 3}, [1502] = {.lex_state = 7, .external_lex_state = 3}, - [1503] = {.lex_state = 7, .external_lex_state = 3}, - [1504] = {.lex_state = 0, .external_lex_state = 3}, - [1505] = {.lex_state = 14, .external_lex_state = 3}, - [1506] = {.lex_state = 0, .external_lex_state = 3}, + [1503] = {.lex_state = 0, .external_lex_state = 3}, + [1504] = {.lex_state = 14, .external_lex_state = 3}, + [1505] = {.lex_state = 7, .external_lex_state = 3}, + [1506] = {.lex_state = 7, .external_lex_state = 3}, [1507] = {.lex_state = 7, .external_lex_state = 3}, - [1508] = {.lex_state = 4, .external_lex_state = 3}, + [1508] = {.lex_state = 14, .external_lex_state = 3}, [1509] = {.lex_state = 7, .external_lex_state = 3}, - [1510] = {.lex_state = 7, .external_lex_state = 3}, - [1511] = {.lex_state = 14, .external_lex_state = 3}, - [1512] = {.lex_state = 14, .external_lex_state = 3}, - [1513] = {.lex_state = 0, .external_lex_state = 3}, + [1510] = {.lex_state = 0, .external_lex_state = 3}, + [1511] = {.lex_state = 0, .external_lex_state = 3}, + [1512] = {.lex_state = 0, .external_lex_state = 3}, + [1513] = {.lex_state = 7, .external_lex_state = 3}, [1514] = {.lex_state = 0, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 3}, - [1516] = {.lex_state = 7, .external_lex_state = 3}, - [1517] = {.lex_state = 0, .external_lex_state = 3}, + [1515] = {.lex_state = 0, .external_lex_state = 3}, + [1516] = {.lex_state = 0, .external_lex_state = 3}, + [1517] = {.lex_state = 14, .external_lex_state = 3}, [1518] = {.lex_state = 7, .external_lex_state = 3}, - [1519] = {.lex_state = 0, .external_lex_state = 3}, + [1519] = {.lex_state = 7, .external_lex_state = 3}, [1520] = {.lex_state = 0, .external_lex_state = 3}, - [1521] = {.lex_state = 14, .external_lex_state = 3}, + [1521] = {.lex_state = 7, .external_lex_state = 3}, [1522] = {.lex_state = 7, .external_lex_state = 3}, [1523] = {.lex_state = 0, .external_lex_state = 3}, [1524] = {.lex_state = 7, .external_lex_state = 3}, - [1525] = {.lex_state = 7, .external_lex_state = 3}, - [1526] = {.lex_state = 7, .external_lex_state = 3}, - [1527] = {.lex_state = 7, .external_lex_state = 3}, + [1525] = {.lex_state = 0, .external_lex_state = 3}, + [1526] = {.lex_state = 0, .external_lex_state = 3}, + [1527] = {.lex_state = 10, .external_lex_state = 3}, [1528] = {.lex_state = 7, .external_lex_state = 3}, - [1529] = {.lex_state = 7, .external_lex_state = 3}, + [1529] = {.lex_state = 17, .external_lex_state = 3}, [1530] = {.lex_state = 7, .external_lex_state = 3}, - [1531] = {.lex_state = 17, .external_lex_state = 3}, - [1532] = {.lex_state = 7, .external_lex_state = 3}, + [1531] = {.lex_state = 7, .external_lex_state = 3}, + [1532] = {.lex_state = 14, .external_lex_state = 3}, [1533] = {.lex_state = 7, .external_lex_state = 3}, - [1534] = {.lex_state = 7, .external_lex_state = 3}, - [1535] = {.lex_state = 17, .external_lex_state = 3}, + [1534] = {.lex_state = 17, .external_lex_state = 3}, + [1535] = {.lex_state = 7, .external_lex_state = 3}, [1536] = {.lex_state = 7, .external_lex_state = 3}, - [1537] = {.lex_state = 7, .external_lex_state = 3}, + [1537] = {.lex_state = 4, .external_lex_state = 3}, [1538] = {.lex_state = 7, .external_lex_state = 3}, - [1539] = {.lex_state = 13, .external_lex_state = 3}, + [1539] = {.lex_state = 7, .external_lex_state = 3}, [1540] = {.lex_state = 7, .external_lex_state = 3}, - [1541] = {.lex_state = 7, .external_lex_state = 3}, + [1541] = {.lex_state = 4, .external_lex_state = 3}, [1542] = {.lex_state = 17, .external_lex_state = 3}, [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 10, .external_lex_state = 3}, - [1545] = {.lex_state = 7, .external_lex_state = 3}, + [1544] = {.lex_state = 7, .external_lex_state = 3}, + [1545] = {.lex_state = 0, .external_lex_state = 3}, [1546] = {.lex_state = 17, .external_lex_state = 3}, - [1547] = {.lex_state = 17, .external_lex_state = 3}, - [1548] = {.lex_state = 10, .external_lex_state = 3}, - [1549] = {.lex_state = 57, .external_lex_state = 3}, + [1547] = {.lex_state = 7, .external_lex_state = 3}, + [1548] = {.lex_state = 7, .external_lex_state = 3}, + [1549] = {.lex_state = 10, .external_lex_state = 3}, [1550] = {.lex_state = 13, .external_lex_state = 3}, - [1551] = {.lex_state = 10, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, + [1551] = {.lex_state = 57, .external_lex_state = 3}, + [1552] = {.lex_state = 10, .external_lex_state = 3}, [1553] = {.lex_state = 7, .external_lex_state = 3}, [1554] = {.lex_state = 7, .external_lex_state = 3}, - [1555] = {.lex_state = 10, .external_lex_state = 3}, + [1555] = {.lex_state = 7, .external_lex_state = 3}, [1556] = {.lex_state = 57, .external_lex_state = 3}, - [1557] = {.lex_state = 17, .external_lex_state = 3}, - [1558] = {.lex_state = 7, .external_lex_state = 3}, + [1557] = {.lex_state = 10, .external_lex_state = 3}, + [1558] = {.lex_state = 17, .external_lex_state = 3}, [1559] = {.lex_state = 7, .external_lex_state = 3}, [1560] = {.lex_state = 4, .external_lex_state = 3}, [1561] = {.lex_state = 0, .external_lex_state = 3}, - [1562] = {.lex_state = 0, .external_lex_state = 3}, + [1562] = {.lex_state = 7, .external_lex_state = 3}, [1563] = {.lex_state = 7, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, + [1564] = {.lex_state = 7, .external_lex_state = 3}, [1565] = {.lex_state = 7, .external_lex_state = 3}, [1566] = {.lex_state = 7, .external_lex_state = 3}, [1567] = {.lex_state = 17, .external_lex_state = 3}, - [1568] = {.lex_state = 14, .external_lex_state = 3}, - [1569] = {.lex_state = 7, .external_lex_state = 3}, + [1568] = {.lex_state = 7, .external_lex_state = 3}, + [1569] = {.lex_state = 10, .external_lex_state = 3}, [1570] = {.lex_state = 7, .external_lex_state = 3}, [1571] = {.lex_state = 7, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, - [1573] = {.lex_state = 0, .external_lex_state = 3}, - [1574] = {.lex_state = 17, .external_lex_state = 3}, - [1575] = {.lex_state = 7, .external_lex_state = 3}, + [1572] = {.lex_state = 7, .external_lex_state = 3}, + [1573] = {.lex_state = 7, .external_lex_state = 3}, + [1574] = {.lex_state = 7, .external_lex_state = 3}, + [1575] = {.lex_state = 13, .external_lex_state = 3}, [1576] = {.lex_state = 17, .external_lex_state = 3}, - [1577] = {.lex_state = 7, .external_lex_state = 3}, + [1577] = {.lex_state = 10, .external_lex_state = 3}, [1578] = {.lex_state = 7, .external_lex_state = 3}, - [1579] = {.lex_state = 10, .external_lex_state = 3}, - [1580] = {.lex_state = 7, .external_lex_state = 3}, - [1581] = {.lex_state = 10, .external_lex_state = 3}, + [1579] = {.lex_state = 0, .external_lex_state = 3}, + [1580] = {.lex_state = 17, .external_lex_state = 3}, + [1581] = {.lex_state = 7, .external_lex_state = 3}, [1582] = {.lex_state = 7, .external_lex_state = 3}, - [1583] = {.lex_state = 17, .external_lex_state = 3}, - [1584] = {.lex_state = 7, .external_lex_state = 3}, - [1585] = {.lex_state = 7, .external_lex_state = 3}, - [1586] = {.lex_state = 0, .external_lex_state = 3}, - [1587] = {.lex_state = 0, .external_lex_state = 3}, - [1588] = {.lex_state = 17, .external_lex_state = 3}, + [1583] = {.lex_state = 7, .external_lex_state = 3}, + [1584] = {.lex_state = 17, .external_lex_state = 3}, + [1585] = {.lex_state = 17, .external_lex_state = 3}, + [1586] = {.lex_state = 7, .external_lex_state = 3}, + [1587] = {.lex_state = 7, .external_lex_state = 3}, + [1588] = {.lex_state = 0, .external_lex_state = 3}, [1589] = {.lex_state = 7, .external_lex_state = 3}, - [1590] = {.lex_state = 0, .external_lex_state = 3}, - [1591] = {.lex_state = 17, .external_lex_state = 3}, - [1592] = {.lex_state = 17, .external_lex_state = 3}, + [1590] = {.lex_state = 7, .external_lex_state = 3}, + [1591] = {.lex_state = 7, .external_lex_state = 3}, + [1592] = {.lex_state = 7, .external_lex_state = 3}, [1593] = {.lex_state = 7, .external_lex_state = 3}, [1594] = {.lex_state = 7, .external_lex_state = 3}, [1595] = {.lex_state = 7, .external_lex_state = 3}, [1596] = {.lex_state = 7, .external_lex_state = 3}, - [1597] = {.lex_state = 7, .external_lex_state = 3}, - [1598] = {.lex_state = 17, .external_lex_state = 3}, - [1599] = {.lex_state = 7, .external_lex_state = 3}, - [1600] = {.lex_state = 17, .external_lex_state = 3}, + [1597] = {.lex_state = 17, .external_lex_state = 3}, + [1598] = {.lex_state = 0, .external_lex_state = 3}, + [1599] = {.lex_state = 0, .external_lex_state = 3}, + [1600] = {.lex_state = 7, .external_lex_state = 3}, [1601] = {.lex_state = 7, .external_lex_state = 3}, [1602] = {.lex_state = 7, .external_lex_state = 3}, [1603] = {.lex_state = 7, .external_lex_state = 3}, - [1604] = {.lex_state = 17, .external_lex_state = 3}, - [1605] = {.lex_state = 7, .external_lex_state = 3}, - [1606] = {.lex_state = 0, .external_lex_state = 3}, - [1607] = {.lex_state = 7, .external_lex_state = 3}, - [1608] = {.lex_state = 7, .external_lex_state = 3}, + [1604] = {.lex_state = 7, .external_lex_state = 3}, + [1605] = {.lex_state = 17, .external_lex_state = 3}, + [1606] = {.lex_state = 7, .external_lex_state = 3}, + [1607] = {.lex_state = 17, .external_lex_state = 3}, + [1608] = {.lex_state = 17, .external_lex_state = 3}, [1609] = {.lex_state = 7, .external_lex_state = 3}, [1610] = {.lex_state = 7, .external_lex_state = 3}, - [1611] = {.lex_state = 7, .external_lex_state = 3}, - [1612] = {.lex_state = 57, .external_lex_state = 3}, + [1611] = {.lex_state = 17, .external_lex_state = 3}, + [1612] = {.lex_state = 7, .external_lex_state = 3}, [1613] = {.lex_state = 7, .external_lex_state = 3}, - [1614] = {.lex_state = 7, .external_lex_state = 3}, + [1614] = {.lex_state = 0, .external_lex_state = 3}, [1615] = {.lex_state = 7, .external_lex_state = 3}, - [1616] = {.lex_state = 7, .external_lex_state = 3}, + [1616] = {.lex_state = 0, .external_lex_state = 3}, [1617] = {.lex_state = 7, .external_lex_state = 3}, [1618] = {.lex_state = 7, .external_lex_state = 3}, - [1619] = {.lex_state = 0, .external_lex_state = 3}, - [1620] = {.lex_state = 17, .external_lex_state = 3}, + [1619] = {.lex_state = 17, .external_lex_state = 3}, + [1620] = {.lex_state = 7, .external_lex_state = 3}, [1621] = {.lex_state = 7, .external_lex_state = 3}, [1622] = {.lex_state = 7, .external_lex_state = 3}, [1623] = {.lex_state = 7, .external_lex_state = 3}, - [1624] = {.lex_state = 7, .external_lex_state = 3}, - [1625] = {.lex_state = 7, .external_lex_state = 3}, + [1624] = {.lex_state = 17, .external_lex_state = 3}, + [1625] = {.lex_state = 17, .external_lex_state = 3}, [1626] = {.lex_state = 7, .external_lex_state = 3}, [1627] = {.lex_state = 7, .external_lex_state = 3}, - [1628] = {.lex_state = 17, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, + [1628] = {.lex_state = 57, .external_lex_state = 3}, + [1629] = {.lex_state = 17, .external_lex_state = 3}, [1630] = {.lex_state = 7, .external_lex_state = 3}, - [1631] = {.lex_state = 0, .external_lex_state = 3}, + [1631] = {.lex_state = 7, .external_lex_state = 3}, [1632] = {.lex_state = 7, .external_lex_state = 3}, [1633] = {.lex_state = 7, .external_lex_state = 3}, - [1634] = {.lex_state = 7, .external_lex_state = 3}, + [1634] = {.lex_state = 0, .external_lex_state = 3}, [1635] = {.lex_state = 7, .external_lex_state = 3}, [1636] = {.lex_state = 7, .external_lex_state = 3}, - [1637] = {.lex_state = 7, .external_lex_state = 3}, + [1637] = {.lex_state = 0, .external_lex_state = 3}, [1638] = {.lex_state = 7, .external_lex_state = 3}, [1639] = {.lex_state = 7, .external_lex_state = 3}, - [1640] = {.lex_state = 0, .external_lex_state = 3}, + [1640] = {.lex_state = 7, .external_lex_state = 3}, [1641] = {.lex_state = 7, .external_lex_state = 3}, - [1642] = {.lex_state = 7, .external_lex_state = 3}, - [1643] = {.lex_state = 7, .external_lex_state = 3}, + [1642] = {.lex_state = 0, .external_lex_state = 3}, + [1643] = {.lex_state = 17, .external_lex_state = 3}, [1644] = {.lex_state = 7, .external_lex_state = 3}, - [1645] = {.lex_state = 17, .external_lex_state = 3}, + [1645] = {.lex_state = 7, .external_lex_state = 3}, [1646] = {.lex_state = 7, .external_lex_state = 3}, [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 0, .external_lex_state = 3}, - [1649] = {.lex_state = 17, .external_lex_state = 3}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, + [1648] = {.lex_state = 7, .external_lex_state = 3}, + [1649] = {.lex_state = 7, .external_lex_state = 3}, + [1650] = {.lex_state = 17, .external_lex_state = 3}, [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 17, .external_lex_state = 3}, + [1652] = {.lex_state = 7, .external_lex_state = 3}, [1653] = {.lex_state = 7, .external_lex_state = 3}, - [1654] = {.lex_state = 57, .external_lex_state = 3}, - [1655] = {.lex_state = 57, .external_lex_state = 3}, - [1656] = {.lex_state = 0, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 3}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, + [1654] = {.lex_state = 7, .external_lex_state = 3}, + [1655] = {.lex_state = 7, .external_lex_state = 3}, + [1656] = {.lex_state = 7, .external_lex_state = 3}, + [1657] = {.lex_state = 57, .external_lex_state = 3}, + [1658] = {.lex_state = 57, .external_lex_state = 3}, [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 4, .external_lex_state = 4}, - [1661] = {.lex_state = 17, .external_lex_state = 3}, - [1662] = {.lex_state = 57, .external_lex_state = 3}, + [1660] = {.lex_state = 7, .external_lex_state = 3}, + [1661] = {.lex_state = 57, .external_lex_state = 3}, + [1662] = {.lex_state = 7, .external_lex_state = 3}, [1663] = {.lex_state = 7, .external_lex_state = 3}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 0, .external_lex_state = 3}, + [1664] = {.lex_state = 57, .external_lex_state = 3}, + [1665] = {.lex_state = 17, .external_lex_state = 3}, [1666] = {.lex_state = 57, .external_lex_state = 3}, - [1667] = {.lex_state = 17, .external_lex_state = 3}, - [1668] = {.lex_state = 4, .external_lex_state = 4}, + [1667] = {.lex_state = 57, .external_lex_state = 3}, + [1668] = {.lex_state = 57, .external_lex_state = 3}, [1669] = {.lex_state = 18, .external_lex_state = 3}, [1670] = {.lex_state = 57, .external_lex_state = 3}, - [1671] = {.lex_state = 17, .external_lex_state = 3}, + [1671] = {.lex_state = 7, .external_lex_state = 3}, [1672] = {.lex_state = 7, .external_lex_state = 3}, [1673] = {.lex_state = 7, .external_lex_state = 3}, [1674] = {.lex_state = 57, .external_lex_state = 3}, - [1675] = {.lex_state = 57, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 3}, + [1675] = {.lex_state = 7, .external_lex_state = 3}, + [1676] = {.lex_state = 4, .external_lex_state = 4}, + [1677] = {.lex_state = 18, .external_lex_state = 3}, [1678] = {.lex_state = 17, .external_lex_state = 3}, [1679] = {.lex_state = 0, .external_lex_state = 3}, - [1680] = {.lex_state = 57, .external_lex_state = 3}, - [1681] = {.lex_state = 7, .external_lex_state = 3}, - [1682] = {.lex_state = 57, .external_lex_state = 3}, - [1683] = {.lex_state = 57, .external_lex_state = 3}, + [1680] = {.lex_state = 7, .external_lex_state = 3}, + [1681] = {.lex_state = 17, .external_lex_state = 3}, + [1682] = {.lex_state = 4, .external_lex_state = 4}, + [1683] = {.lex_state = 4, .external_lex_state = 4}, [1684] = {.lex_state = 7, .external_lex_state = 3}, - [1685] = {.lex_state = 0, .external_lex_state = 3}, - [1686] = {.lex_state = 7, .external_lex_state = 3}, + [1685] = {.lex_state = 57, .external_lex_state = 3}, + [1686] = {.lex_state = 18, .external_lex_state = 3}, [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 57, .external_lex_state = 3}, - [1689] = {.lex_state = 4, .external_lex_state = 4}, + [1688] = {.lex_state = 18, .external_lex_state = 3}, + [1689] = {.lex_state = 17, .external_lex_state = 3}, [1690] = {.lex_state = 0, .external_lex_state = 3}, - [1691] = {.lex_state = 17, .external_lex_state = 3}, - [1692] = {.lex_state = 57, .external_lex_state = 3}, + [1691] = {.lex_state = 0, .external_lex_state = 3}, + [1692] = {.lex_state = 7, .external_lex_state = 3}, [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 18, .external_lex_state = 3}, - [1695] = {.lex_state = 17, .external_lex_state = 3}, - [1696] = {.lex_state = 57, .external_lex_state = 3}, - [1697] = {.lex_state = 4, .external_lex_state = 4}, - [1698] = {.lex_state = 57, .external_lex_state = 3}, - [1699] = {.lex_state = 17, .external_lex_state = 3}, - [1700] = {.lex_state = 57, .external_lex_state = 3}, - [1701] = {.lex_state = 4, .external_lex_state = 4}, - [1702] = {.lex_state = 17, .external_lex_state = 3}, - [1703] = {.lex_state = 18, .external_lex_state = 3}, - [1704] = {.lex_state = 0, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 3}, + [1694] = {.lex_state = 17, .external_lex_state = 3}, + [1695] = {.lex_state = 0, .external_lex_state = 3}, + [1696] = {.lex_state = 0, .external_lex_state = 3}, + [1697] = {.lex_state = 57, .external_lex_state = 3}, + [1698] = {.lex_state = 17, .external_lex_state = 3}, + [1699] = {.lex_state = 57, .external_lex_state = 3}, + [1700] = {.lex_state = 7, .external_lex_state = 3}, + [1701] = {.lex_state = 17, .external_lex_state = 3}, + [1702] = {.lex_state = 7, .external_lex_state = 3}, + [1703] = {.lex_state = 0, .external_lex_state = 3}, + [1704] = {.lex_state = 4, .external_lex_state = 4}, + [1705] = {.lex_state = 57, .external_lex_state = 3}, [1706] = {.lex_state = 7, .external_lex_state = 3}, - [1707] = {.lex_state = 57, .external_lex_state = 3}, - [1708] = {.lex_state = 57, .external_lex_state = 3}, - [1709] = {.lex_state = 0, .external_lex_state = 3}, - [1710] = {.lex_state = 0, .external_lex_state = 3}, - [1711] = {.lex_state = 7, .external_lex_state = 3}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 57, .external_lex_state = 3}, + [1707] = {.lex_state = 0, .external_lex_state = 3}, + [1708] = {.lex_state = 4, .external_lex_state = 4}, + [1709] = {.lex_state = 57, .external_lex_state = 3}, + [1710] = {.lex_state = 57, .external_lex_state = 3}, + [1711] = {.lex_state = 0, .external_lex_state = 3}, + [1712] = {.lex_state = 17, .external_lex_state = 3}, + [1713] = {.lex_state = 7, .external_lex_state = 3}, [1714] = {.lex_state = 57, .external_lex_state = 3}, - [1715] = {.lex_state = 17, .external_lex_state = 3}, - [1716] = {.lex_state = 17, .external_lex_state = 3}, - [1717] = {.lex_state = 57, .external_lex_state = 3}, + [1715] = {.lex_state = 0, .external_lex_state = 3}, + [1716] = {.lex_state = 7, .external_lex_state = 3}, + [1717] = {.lex_state = 0, .external_lex_state = 3}, [1718] = {.lex_state = 57, .external_lex_state = 3}, - [1719] = {.lex_state = 57, .external_lex_state = 3}, - [1720] = {.lex_state = 7, .external_lex_state = 3}, - [1721] = {.lex_state = 7, .external_lex_state = 3}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, + [1719] = {.lex_state = 0, .external_lex_state = 3}, + [1720] = {.lex_state = 57, .external_lex_state = 3}, + [1721] = {.lex_state = 17, .external_lex_state = 3}, + [1722] = {.lex_state = 57, .external_lex_state = 3}, [1723] = {.lex_state = 57, .external_lex_state = 3}, - [1724] = {.lex_state = 57, .external_lex_state = 3}, - [1725] = {.lex_state = 0, .external_lex_state = 3}, - [1726] = {.lex_state = 18, .external_lex_state = 3}, - [1727] = {.lex_state = 0, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 3}, - [1729] = {.lex_state = 57, .external_lex_state = 3}, - [1730] = {.lex_state = 7, .external_lex_state = 3}, - [1731] = {.lex_state = 4, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 3}, - [1733] = {.lex_state = 57, .external_lex_state = 3}, - [1734] = {.lex_state = 0, .external_lex_state = 3}, - [1735] = {.lex_state = 17, .external_lex_state = 3}, - [1736] = {.lex_state = 4, .external_lex_state = 4}, - [1737] = {.lex_state = 0, .external_lex_state = 3}, + [1724] = {.lex_state = 7, .external_lex_state = 3}, + [1725] = {.lex_state = 4, .external_lex_state = 4}, + [1726] = {.lex_state = 57, .external_lex_state = 3}, + [1727] = {.lex_state = 7, .external_lex_state = 3}, + [1728] = {.lex_state = 57, .external_lex_state = 3}, + [1729] = {.lex_state = 7, .external_lex_state = 3}, + [1730] = {.lex_state = 0, .external_lex_state = 3}, + [1731] = {.lex_state = 57, .external_lex_state = 3}, + [1732] = {.lex_state = 17, .external_lex_state = 3}, + [1733] = {.lex_state = 0, .external_lex_state = 3}, + [1734] = {.lex_state = 7, .external_lex_state = 3}, + [1735] = {.lex_state = 57, .external_lex_state = 3}, + [1736] = {.lex_state = 57, .external_lex_state = 3}, + [1737] = {.lex_state = 57, .external_lex_state = 3}, [1738] = {.lex_state = 7, .external_lex_state = 3}, [1739] = {.lex_state = 57, .external_lex_state = 3}, - [1740] = {.lex_state = 0, .external_lex_state = 3}, - [1741] = {.lex_state = 57, .external_lex_state = 3}, - [1742] = {.lex_state = 57, .external_lex_state = 3}, - [1743] = {.lex_state = 0, .external_lex_state = 3}, - [1744] = {.lex_state = 10, .external_lex_state = 3}, - [1745] = {.lex_state = 0, .external_lex_state = 3}, - [1746] = {.lex_state = 7, .external_lex_state = 3}, - [1747] = {.lex_state = 57, .external_lex_state = 3}, + [1740] = {.lex_state = 7, .external_lex_state = 3}, + [1741] = {.lex_state = 17, .external_lex_state = 3}, + [1742] = {.lex_state = 4, .external_lex_state = 4}, + [1743] = {.lex_state = 7, .external_lex_state = 3}, + [1744] = {.lex_state = 57, .external_lex_state = 3}, + [1745] = {.lex_state = 57, .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 = 0, .external_lex_state = 3}, - [1750] = {.lex_state = 0, .external_lex_state = 3}, - [1751] = {.lex_state = 7, .external_lex_state = 3}, - [1752] = {.lex_state = 7, .external_lex_state = 3}, + [1749] = {.lex_state = 57, .external_lex_state = 3}, + [1750] = {.lex_state = 57, .external_lex_state = 3}, + [1751] = {.lex_state = 57, .external_lex_state = 3}, + [1752] = {.lex_state = 0, .external_lex_state = 3}, [1753] = {.lex_state = 0, .external_lex_state = 3}, - [1754] = {.lex_state = 7, .external_lex_state = 3}, - [1755] = {.lex_state = 57, .external_lex_state = 3}, - [1756] = {.lex_state = 57, .external_lex_state = 3}, - [1757] = {.lex_state = 0, .external_lex_state = 3}, + [1754] = {.lex_state = 57, .external_lex_state = 3}, + [1755] = {.lex_state = 0, .external_lex_state = 3}, + [1756] = {.lex_state = 10, .external_lex_state = 3}, + [1757] = {.lex_state = 7, .external_lex_state = 3}, [1758] = {.lex_state = 0, .external_lex_state = 3}, - [1759] = {.lex_state = 57, .external_lex_state = 3}, - [1760] = {.lex_state = 57, .external_lex_state = 3}, + [1759] = {.lex_state = 0, .external_lex_state = 3}, + [1760] = {.lex_state = 0, .external_lex_state = 3}, [1761] = {.lex_state = 0, .external_lex_state = 3}, - [1762] = {.lex_state = 0, .external_lex_state = 3}, + [1762] = {.lex_state = 7, .external_lex_state = 3}, [1763] = {.lex_state = 0, .external_lex_state = 3}, - [1764] = {.lex_state = 57, .external_lex_state = 3}, + [1764] = {.lex_state = 0, .external_lex_state = 3}, [1765] = {.lex_state = 0, .external_lex_state = 3}, - [1766] = {.lex_state = 57, .external_lex_state = 3}, - [1767] = {.lex_state = 0, .external_lex_state = 3}, - [1768] = {.lex_state = 0, .external_lex_state = 3}, - [1769] = {.lex_state = 57, .external_lex_state = 3}, + [1766] = {.lex_state = 0, .external_lex_state = 3}, + [1767] = {.lex_state = 57, .external_lex_state = 3}, + [1768] = {.lex_state = 7, .external_lex_state = 3}, + [1769] = {.lex_state = 10, .external_lex_state = 3}, [1770] = {.lex_state = 0, .external_lex_state = 3}, - [1771] = {.lex_state = 57, .external_lex_state = 3}, + [1771] = {.lex_state = 0, .external_lex_state = 3}, [1772] = {.lex_state = 0, .external_lex_state = 3}, - [1773] = {.lex_state = 57, .external_lex_state = 3}, + [1773] = {.lex_state = 0, .external_lex_state = 3}, [1774] = {.lex_state = 57, .external_lex_state = 3}, - [1775] = {.lex_state = 10, .external_lex_state = 3}, + [1775] = {.lex_state = 0, .external_lex_state = 3}, [1776] = {.lex_state = 0, .external_lex_state = 3}, - [1777] = {.lex_state = 57, .external_lex_state = 3}, - [1778] = {.lex_state = 57, .external_lex_state = 3}, - [1779] = {.lex_state = 7, .external_lex_state = 3}, + [1777] = {.lex_state = 0, .external_lex_state = 3}, + [1778] = {.lex_state = 3, .external_lex_state = 3}, + [1779] = {.lex_state = 0, .external_lex_state = 3}, [1780] = {.lex_state = 0, .external_lex_state = 3}, - [1781] = {.lex_state = 0, .external_lex_state = 3}, - [1782] = {.lex_state = 7, .external_lex_state = 3}, - [1783] = {.lex_state = 0, .external_lex_state = 3}, - [1784] = {.lex_state = 57, .external_lex_state = 3}, - [1785] = {.lex_state = 0, .external_lex_state = 3}, + [1781] = {.lex_state = 3, .external_lex_state = 3}, + [1782] = {.lex_state = 3, .external_lex_state = 3}, + [1783] = {.lex_state = 3, .external_lex_state = 3}, + [1784] = {.lex_state = 17, .external_lex_state = 3}, + [1785] = {.lex_state = 57, .external_lex_state = 3}, [1786] = {.lex_state = 0, .external_lex_state = 3}, - [1787] = {.lex_state = 57, .external_lex_state = 3}, - [1788] = {.lex_state = 57, .external_lex_state = 3}, + [1787] = {.lex_state = 7, .external_lex_state = 3}, + [1788] = {.lex_state = 0, .external_lex_state = 3}, [1789] = {.lex_state = 0, .external_lex_state = 3}, - [1790] = {.lex_state = 0, .external_lex_state = 3}, - [1791] = {.lex_state = 0, .external_lex_state = 3}, - [1792] = {.lex_state = 0, .external_lex_state = 3}, + [1790] = {.lex_state = 57, .external_lex_state = 3}, + [1791] = {.lex_state = 7, .external_lex_state = 3}, + [1792] = {.lex_state = 3, .external_lex_state = 3}, [1793] = {.lex_state = 0, .external_lex_state = 3}, [1794] = {.lex_state = 0, .external_lex_state = 3}, [1795] = {.lex_state = 0, .external_lex_state = 3}, - [1796] = {.lex_state = 0, .external_lex_state = 3}, - [1797] = {.lex_state = 0, .external_lex_state = 3}, - [1798] = {.lex_state = 57, .external_lex_state = 3}, - [1799] = {.lex_state = 0, .external_lex_state = 3}, - [1800] = {.lex_state = 0, .external_lex_state = 3}, - [1801] = {.lex_state = 0, .external_lex_state = 3}, - [1802] = {.lex_state = 57, .external_lex_state = 3}, - [1803] = {.lex_state = 0, .external_lex_state = 3}, + [1796] = {.lex_state = 7, .external_lex_state = 3}, + [1797] = {.lex_state = 57, .external_lex_state = 3}, + [1798] = {.lex_state = 4, .external_lex_state = 3}, + [1799] = {.lex_state = 57, .external_lex_state = 3}, + [1800] = {.lex_state = 10, .external_lex_state = 3}, + [1801] = {.lex_state = 7, .external_lex_state = 3}, + [1802] = {.lex_state = 0, .external_lex_state = 3}, + [1803] = {.lex_state = 7, .external_lex_state = 3}, [1804] = {.lex_state = 57, .external_lex_state = 3}, - [1805] = {.lex_state = 57, .external_lex_state = 3}, + [1805] = {.lex_state = 0, .external_lex_state = 3}, [1806] = {.lex_state = 57, .external_lex_state = 3}, [1807] = {.lex_state = 0, .external_lex_state = 3}, - [1808] = {.lex_state = 57, .external_lex_state = 3}, - [1809] = {.lex_state = 57, .external_lex_state = 3}, - [1810] = {.lex_state = 57, .external_lex_state = 3}, - [1811] = {.lex_state = 10, .external_lex_state = 3}, - [1812] = {.lex_state = 0, .external_lex_state = 3}, + [1808] = {.lex_state = 3, .external_lex_state = 3}, + [1809] = {.lex_state = 0, .external_lex_state = 3}, + [1810] = {.lex_state = 0, .external_lex_state = 3}, + [1811] = {.lex_state = 7, .external_lex_state = 3}, + [1812] = {.lex_state = 3, .external_lex_state = 3}, [1813] = {.lex_state = 0, .external_lex_state = 3}, - [1814] = {.lex_state = 57, .external_lex_state = 3}, - [1815] = {.lex_state = 0, .external_lex_state = 3}, - [1816] = {.lex_state = 57, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 57, .external_lex_state = 3}, - [1819] = {.lex_state = 57, .external_lex_state = 3}, - [1820] = {.lex_state = 4, .external_lex_state = 3}, + [1814] = {.lex_state = 0, .external_lex_state = 3}, + [1815] = {.lex_state = 7, .external_lex_state = 3}, + [1816] = {.lex_state = 7, .external_lex_state = 3}, + [1817] = {.lex_state = 57, .external_lex_state = 3}, + [1818] = {.lex_state = 0, .external_lex_state = 3}, + [1819] = {.lex_state = 10, .external_lex_state = 3}, + [1820] = {.lex_state = 0, .external_lex_state = 3}, [1821] = {.lex_state = 7, .external_lex_state = 3}, - [1822] = {.lex_state = 0, .external_lex_state = 3}, - [1823] = {.lex_state = 57, .external_lex_state = 3}, - [1824] = {.lex_state = 7, .external_lex_state = 3}, - [1825] = {.lex_state = 57, .external_lex_state = 3}, + [1822] = {.lex_state = 10, .external_lex_state = 3}, + [1823] = {.lex_state = 0, .external_lex_state = 3}, + [1824] = {.lex_state = 0, .external_lex_state = 3}, + [1825] = {.lex_state = 0, .external_lex_state = 3}, [1826] = {.lex_state = 0, .external_lex_state = 3}, - [1827] = {.lex_state = 57, .external_lex_state = 3}, + [1827] = {.lex_state = 7, .external_lex_state = 3}, [1828] = {.lex_state = 57, .external_lex_state = 3}, [1829] = {.lex_state = 0, .external_lex_state = 3}, - [1830] = {.lex_state = 57, .external_lex_state = 3}, + [1830] = {.lex_state = 0, .external_lex_state = 3}, [1831] = {.lex_state = 0, .external_lex_state = 3}, [1832] = {.lex_state = 0, .external_lex_state = 3}, - [1833] = {.lex_state = 7, .external_lex_state = 3}, - [1834] = {.lex_state = 57, .external_lex_state = 3}, - [1835] = {.lex_state = 57, .external_lex_state = 3}, - [1836] = {.lex_state = 3, .external_lex_state = 3}, - [1837] = {.lex_state = 3, .external_lex_state = 3}, - [1838] = {.lex_state = 10, .external_lex_state = 3}, - [1839] = {.lex_state = 7, .external_lex_state = 3}, - [1840] = {.lex_state = 0, .external_lex_state = 3}, + [1833] = {.lex_state = 0, .external_lex_state = 3}, + [1834] = {.lex_state = 7, .external_lex_state = 3}, + [1835] = {.lex_state = 0, .external_lex_state = 3}, + [1836] = {.lex_state = 0, .external_lex_state = 3}, + [1837] = {.lex_state = 0, .external_lex_state = 3}, + [1838] = {.lex_state = 57, .external_lex_state = 3}, + [1839] = {.lex_state = 0, .external_lex_state = 3}, + [1840] = {.lex_state = 7, .external_lex_state = 3}, [1841] = {.lex_state = 3, .external_lex_state = 3}, - [1842] = {.lex_state = 7, .external_lex_state = 3}, - [1843] = {.lex_state = 0, .external_lex_state = 3}, - [1844] = {.lex_state = 7, .external_lex_state = 3}, - [1845] = {.lex_state = 3, .external_lex_state = 3}, - [1846] = {.lex_state = 3, .external_lex_state = 3}, - [1847] = {.lex_state = 0, .external_lex_state = 3}, - [1848] = {.lex_state = 0, .external_lex_state = 3}, + [1842] = {.lex_state = 3, .external_lex_state = 3}, + [1843] = {.lex_state = 57, .external_lex_state = 3}, + [1844] = {.lex_state = 0, .external_lex_state = 3}, + [1845] = {.lex_state = 0, .external_lex_state = 3}, + [1846] = {.lex_state = 0, .external_lex_state = 3}, + [1847] = {.lex_state = 3, .external_lex_state = 3}, + [1848] = {.lex_state = 3, .external_lex_state = 3}, [1849] = {.lex_state = 0, .external_lex_state = 3}, - [1850] = {.lex_state = 7, .external_lex_state = 3}, - [1851] = {.lex_state = 3, .external_lex_state = 3}, + [1850] = {.lex_state = 0, .external_lex_state = 3}, + [1851] = {.lex_state = 57, .external_lex_state = 3}, [1852] = {.lex_state = 3, .external_lex_state = 3}, - [1853] = {.lex_state = 3, .external_lex_state = 3}, + [1853] = {.lex_state = 0, .external_lex_state = 3}, [1854] = {.lex_state = 10, .external_lex_state = 3}, - [1855] = {.lex_state = 57, .external_lex_state = 3}, - [1856] = {.lex_state = 0, .external_lex_state = 3}, - [1857] = {.lex_state = 10, .external_lex_state = 3}, - [1858] = {.lex_state = 7, .external_lex_state = 3}, + [1855] = {.lex_state = 10, .external_lex_state = 3}, + [1856] = {.lex_state = 3, .external_lex_state = 3}, + [1857] = {.lex_state = 3, .external_lex_state = 3}, + [1858] = {.lex_state = 0, .external_lex_state = 3}, [1859] = {.lex_state = 0, .external_lex_state = 3}, - [1860] = {.lex_state = 0, .external_lex_state = 3}, - [1861] = {.lex_state = 0, .external_lex_state = 3}, + [1860] = {.lex_state = 57, .external_lex_state = 3}, + [1861] = {.lex_state = 57, .external_lex_state = 3}, [1862] = {.lex_state = 0, .external_lex_state = 3}, [1863] = {.lex_state = 0, .external_lex_state = 3}, [1864] = {.lex_state = 0, .external_lex_state = 3}, [1865] = {.lex_state = 0, .external_lex_state = 3}, - [1866] = {.lex_state = 3, .external_lex_state = 3}, - [1867] = {.lex_state = 3, .external_lex_state = 3}, + [1866] = {.lex_state = 0, .external_lex_state = 3}, + [1867] = {.lex_state = 57, .external_lex_state = 3}, [1868] = {.lex_state = 0, .external_lex_state = 3}, - [1869] = {.lex_state = 0, .external_lex_state = 3}, + [1869] = {.lex_state = 10, .external_lex_state = 3}, [1870] = {.lex_state = 0, .external_lex_state = 3}, [1871] = {.lex_state = 0, .external_lex_state = 3}, - [1872] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 0, .external_lex_state = 3}, [1873] = {.lex_state = 0, .external_lex_state = 3}, - [1874] = {.lex_state = 0, .external_lex_state = 3}, - [1875] = {.lex_state = 0, .external_lex_state = 3}, + [1874] = {.lex_state = 57, .external_lex_state = 3}, + [1875] = {.lex_state = 3, .external_lex_state = 3}, [1876] = {.lex_state = 0, .external_lex_state = 3}, - [1877] = {.lex_state = 3, .external_lex_state = 3}, - [1878] = {.lex_state = 3, .external_lex_state = 3}, + [1877] = {.lex_state = 57, .external_lex_state = 3}, + [1878] = {.lex_state = 57, .external_lex_state = 3}, [1879] = {.lex_state = 0, .external_lex_state = 3}, [1880] = {.lex_state = 0, .external_lex_state = 3}, - [1881] = {.lex_state = 0, .external_lex_state = 3}, - [1882] = {.lex_state = 0, .external_lex_state = 3}, - [1883] = {.lex_state = 0, .external_lex_state = 3}, - [1884] = {.lex_state = 0, .external_lex_state = 3}, + [1881] = {.lex_state = 3, .external_lex_state = 3}, + [1882] = {.lex_state = 3, .external_lex_state = 3}, + [1883] = {.lex_state = 3, .external_lex_state = 3}, + [1884] = {.lex_state = 57, .external_lex_state = 3}, [1885] = {.lex_state = 0, .external_lex_state = 3}, - [1886] = {.lex_state = 0, .external_lex_state = 3}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, - [1888] = {.lex_state = 3, .external_lex_state = 3}, + [1886] = {.lex_state = 57, .external_lex_state = 3}, + [1887] = {.lex_state = 0, .external_lex_state = 3}, + [1888] = {.lex_state = 0, .external_lex_state = 3}, [1889] = {.lex_state = 0, .external_lex_state = 3}, - [1890] = {.lex_state = 57, .external_lex_state = 3}, - [1891] = {.lex_state = 0, .external_lex_state = 3}, - [1892] = {.lex_state = 3, .external_lex_state = 3}, - [1893] = {.lex_state = 3, .external_lex_state = 3}, - [1894] = {.lex_state = 57, .external_lex_state = 3}, - [1895] = {.lex_state = 0, .external_lex_state = 3}, - [1896] = {.lex_state = 57, .external_lex_state = 3}, - [1897] = {.lex_state = 3, .external_lex_state = 3}, - [1898] = {.lex_state = 3, .external_lex_state = 3}, - [1899] = {.lex_state = 0, .external_lex_state = 3}, + [1890] = {.lex_state = 4, .external_lex_state = 3}, + [1891] = {.lex_state = 3, .external_lex_state = 3}, + [1892] = {.lex_state = 0, .external_lex_state = 3}, + [1893] = {.lex_state = 57, .external_lex_state = 3}, + [1894] = {.lex_state = 0, .external_lex_state = 3}, + [1895] = {.lex_state = 3, .external_lex_state = 3}, + [1896] = {.lex_state = 0, .external_lex_state = 3}, + [1897] = {.lex_state = 57, .external_lex_state = 3}, + [1898] = {.lex_state = 0, .external_lex_state = 3}, + [1899] = {.lex_state = 57, .external_lex_state = 3}, [1900] = {.lex_state = 57, .external_lex_state = 3}, - [1901] = {.lex_state = 0, .external_lex_state = 3}, - [1902] = {.lex_state = 0, .external_lex_state = 3}, - [1903] = {.lex_state = 0, .external_lex_state = 3}, - [1904] = {.lex_state = 17, .external_lex_state = 3}, - [1905] = {.lex_state = 57, .external_lex_state = 3}, - [1906] = {.lex_state = 57, .external_lex_state = 3}, - [1907] = {.lex_state = 0, .external_lex_state = 3}, + [1901] = {.lex_state = 57, .external_lex_state = 3}, + [1902] = {.lex_state = 7, .external_lex_state = 3}, + [1903] = {.lex_state = 57, .external_lex_state = 3}, + [1904] = {.lex_state = 0, .external_lex_state = 3}, + [1905] = {.lex_state = 0, .external_lex_state = 3}, + [1906] = {.lex_state = 0, .external_lex_state = 3}, + [1907] = {.lex_state = 57, .external_lex_state = 3}, [1908] = {.lex_state = 0, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 3}, - [1910] = {.lex_state = 0, .external_lex_state = 3}, - [1911] = {.lex_state = 10, .external_lex_state = 3}, - [1912] = {.lex_state = 0, .external_lex_state = 3}, - [1913] = {.lex_state = 0, .external_lex_state = 3}, + [1909] = {.lex_state = 0, .external_lex_state = 3}, + [1910] = {.lex_state = 57, .external_lex_state = 3}, + [1911] = {.lex_state = 0, .external_lex_state = 3}, + [1912] = {.lex_state = 7, .external_lex_state = 3}, + [1913] = {.lex_state = 57, .external_lex_state = 3}, [1914] = {.lex_state = 0, .external_lex_state = 3}, - [1915] = {.lex_state = 0, .external_lex_state = 3}, - [1916] = {.lex_state = 57, .external_lex_state = 3}, - [1917] = {.lex_state = 57, .external_lex_state = 3}, + [1915] = {.lex_state = 57, .external_lex_state = 3}, + [1916] = {.lex_state = 0, .external_lex_state = 3}, + [1917] = {.lex_state = 0, .external_lex_state = 3}, [1918] = {.lex_state = 0, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, + [1919] = {.lex_state = 57, .external_lex_state = 3}, [1920] = {.lex_state = 0, .external_lex_state = 3}, [1921] = {.lex_state = 0, .external_lex_state = 3}, [1922] = {.lex_state = 0, .external_lex_state = 3}, - [1923] = {.lex_state = 0, .external_lex_state = 3}, - [1924] = {.lex_state = 0, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, - [1926] = {.lex_state = 57, .external_lex_state = 3}, - [1927] = {.lex_state = 0, .external_lex_state = 3}, + [1923] = {.lex_state = 57, .external_lex_state = 3}, + [1924] = {.lex_state = 57, .external_lex_state = 3}, + [1925] = {.lex_state = 0, .external_lex_state = 3}, + [1926] = {.lex_state = 0, .external_lex_state = 3}, + [1927] = {.lex_state = 57, .external_lex_state = 3}, [1928] = {.lex_state = 0, .external_lex_state = 3}, - [1929] = {.lex_state = 10, .external_lex_state = 3}, + [1929] = {.lex_state = 57, .external_lex_state = 3}, [1930] = {.lex_state = 0, .external_lex_state = 3}, - [1931] = {.lex_state = 0, .external_lex_state = 3}, + [1931] = {.lex_state = 57, .external_lex_state = 3}, [1932] = {.lex_state = 0, .external_lex_state = 3}, [1933] = {.lex_state = 0, .external_lex_state = 3}, - [1934] = {.lex_state = 10, .external_lex_state = 3}, - [1935] = {.lex_state = 57, .external_lex_state = 3}, - [1936] = {.lex_state = 0, .external_lex_state = 3}, - [1937] = {.lex_state = 57, .external_lex_state = 3}, - [1938] = {.lex_state = 57, .external_lex_state = 3}, - [1939] = {.lex_state = 0, .external_lex_state = 3}, - [1940] = {.lex_state = 0, .external_lex_state = 3}, + [1934] = {.lex_state = 0, .external_lex_state = 3}, + [1935] = {.lex_state = 0, .external_lex_state = 3}, + [1936] = {.lex_state = 57, .external_lex_state = 3}, + [1937] = {.lex_state = 7, .external_lex_state = 3}, + [1938] = {.lex_state = 10, .external_lex_state = 3}, + [1939] = {.lex_state = 7, .external_lex_state = 3}, + [1940] = {.lex_state = 57, .external_lex_state = 3}, [1941] = {.lex_state = 57, .external_lex_state = 3}, - [1942] = {.lex_state = 57, .external_lex_state = 3}, - [1943] = {.lex_state = 57, .external_lex_state = 3}, - [1944] = {.lex_state = 7, .external_lex_state = 3}, + [1942] = {.lex_state = 0, .external_lex_state = 3}, + [1943] = {.lex_state = 0, .external_lex_state = 3}, + [1944] = {.lex_state = 57, .external_lex_state = 3}, [1945] = {.lex_state = 57, .external_lex_state = 3}, - [1946] = {.lex_state = 0, .external_lex_state = 3}, - [1947] = {.lex_state = 0, .external_lex_state = 3}, - [1948] = {.lex_state = 57, .external_lex_state = 3}, + [1946] = {.lex_state = 57, .external_lex_state = 3}, + [1947] = {.lex_state = 57, .external_lex_state = 3}, + [1948] = {.lex_state = 0, .external_lex_state = 3}, [1949] = {.lex_state = 0, .external_lex_state = 3}, [1950] = {.lex_state = 0, .external_lex_state = 3}, [1951] = {.lex_state = 0, .external_lex_state = 3}, [1952] = {.lex_state = 0, .external_lex_state = 3}, [1953] = {.lex_state = 0, .external_lex_state = 3}, - [1954] = {.lex_state = 57, .external_lex_state = 3}, - [1955] = {.lex_state = 0, .external_lex_state = 3}, + [1954] = {.lex_state = 0, .external_lex_state = 3}, + [1955] = {.lex_state = 57, .external_lex_state = 3}, [1956] = {.lex_state = 0, .external_lex_state = 3}, - [1957] = {.lex_state = 10, .external_lex_state = 3}, - [1958] = {.lex_state = 0, .external_lex_state = 3}, - [1959] = {.lex_state = 0, .external_lex_state = 3}, + [1957] = {.lex_state = 57, .external_lex_state = 3}, + [1958] = {.lex_state = 57, .external_lex_state = 3}, + [1959] = {.lex_state = 57, .external_lex_state = 3}, [1960] = {.lex_state = 57, .external_lex_state = 3}, - [1961] = {.lex_state = 10, .external_lex_state = 3}, - [1962] = {.lex_state = 57, .external_lex_state = 3}, - [1963] = {.lex_state = 0, .external_lex_state = 3}, + [1961] = {.lex_state = 0, .external_lex_state = 3}, + [1962] = {.lex_state = 0, .external_lex_state = 3}, + [1963] = {.lex_state = 57, .external_lex_state = 3}, [1964] = {.lex_state = 57, .external_lex_state = 3}, [1965] = {.lex_state = 57, .external_lex_state = 3}, [1966] = {.lex_state = 0, .external_lex_state = 3}, [1967] = {.lex_state = 0, .external_lex_state = 3}, - [1968] = {.lex_state = 57, .external_lex_state = 3}, - [1969] = {.lex_state = 57, .external_lex_state = 3}, - [1970] = {.lex_state = 57, .external_lex_state = 3}, - [1971] = {.lex_state = 4, .external_lex_state = 3}, - [1972] = {.lex_state = 0, .external_lex_state = 3}, - [1973] = {.lex_state = 57, .external_lex_state = 3}, - [1974] = {.lex_state = 3, .external_lex_state = 3}, - [1975] = {.lex_state = 57, .external_lex_state = 3}, - [1976] = {.lex_state = 7, .external_lex_state = 3}, - [1977] = {.lex_state = 0, .external_lex_state = 3}, - [1978] = {.lex_state = 0, .external_lex_state = 3}, - [1979] = {.lex_state = 7, .external_lex_state = 3}, - [1980] = {.lex_state = 3, .external_lex_state = 3}, - [1981] = {.lex_state = 0, .external_lex_state = 3}, - [1982] = {.lex_state = 0, .external_lex_state = 3}, - [1983] = {.lex_state = 0, .external_lex_state = 3}, + [1968] = {.lex_state = 10, .external_lex_state = 3}, + [1969] = {.lex_state = 0, .external_lex_state = 3}, + [1970] = {.lex_state = 0, .external_lex_state = 3}, + [1971] = {.lex_state = 57, .external_lex_state = 3}, + [1972] = {.lex_state = 10, .external_lex_state = 3}, + [1973] = {.lex_state = 7, .external_lex_state = 3}, + [1974] = {.lex_state = 0, .external_lex_state = 3}, + [1975] = {.lex_state = 0, .external_lex_state = 3}, + [1976] = {.lex_state = 57, .external_lex_state = 3}, + [1977] = {.lex_state = 57, .external_lex_state = 3}, + [1978] = {.lex_state = 57, .external_lex_state = 3}, + [1979] = {.lex_state = 0, .external_lex_state = 3}, + [1980] = {.lex_state = 0, .external_lex_state = 3}, + [1981] = {.lex_state = 57, .external_lex_state = 3}, + [1982] = {.lex_state = 7, .external_lex_state = 3}, + [1983] = {.lex_state = 7, .external_lex_state = 3}, [1984] = {.lex_state = 57, .external_lex_state = 3}, - [1985] = {.lex_state = 0, .external_lex_state = 3}, - [1986] = {.lex_state = 0, .external_lex_state = 3}, + [1985] = {.lex_state = 57, .external_lex_state = 3}, + [1986] = {.lex_state = 57, .external_lex_state = 3}, [1987] = {.lex_state = 0, .external_lex_state = 3}, - [1988] = {.lex_state = 7, .external_lex_state = 3}, - [1989] = {.lex_state = 0, .external_lex_state = 3}, + [1988] = {.lex_state = 0, .external_lex_state = 3}, + [1989] = {.lex_state = 7, .external_lex_state = 3}, [1990] = {.lex_state = 0, .external_lex_state = 3}, [1991] = {.lex_state = 0, .external_lex_state = 3}, [1992] = {.lex_state = 57, .external_lex_state = 3}, @@ -7611,111 +7611,111 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1994] = {.lex_state = 0, .external_lex_state = 3}, [1995] = {.lex_state = 0, .external_lex_state = 3}, [1996] = {.lex_state = 0, .external_lex_state = 3}, - [1997] = {.lex_state = 7, .external_lex_state = 3}, - [1998] = {.lex_state = 17, .external_lex_state = 3}, + [1997] = {.lex_state = 17, .external_lex_state = 3}, + [1998] = {.lex_state = 0, .external_lex_state = 3}, [1999] = {.lex_state = 0, .external_lex_state = 3}, - [2000] = {.lex_state = 0, .external_lex_state = 3}, + [2000] = {.lex_state = 7, .external_lex_state = 3}, [2001] = {.lex_state = 0, .external_lex_state = 3}, [2002] = {.lex_state = 0, .external_lex_state = 3}, - [2003] = {.lex_state = 0, .external_lex_state = 3}, - [2004] = {.lex_state = 7, .external_lex_state = 3}, - [2005] = {.lex_state = 0, .external_lex_state = 3}, + [2003] = {.lex_state = 57, .external_lex_state = 3}, + [2004] = {.lex_state = 0, .external_lex_state = 3}, + [2005] = {.lex_state = 7, .external_lex_state = 3}, [2006] = {.lex_state = 0, .external_lex_state = 3}, - [2007] = {.lex_state = 0, .external_lex_state = 3}, + [2007] = {.lex_state = 7, .external_lex_state = 3}, [2008] = {.lex_state = 7, .external_lex_state = 3}, - [2009] = {.lex_state = 57, .external_lex_state = 3}, + [2009] = {.lex_state = 7, .external_lex_state = 3}, [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 57, .external_lex_state = 3}, - [2012] = {.lex_state = 7, .external_lex_state = 3}, + [2011] = {.lex_state = 0, .external_lex_state = 3}, + [2012] = {.lex_state = 57, .external_lex_state = 3}, [2013] = {.lex_state = 0, .external_lex_state = 3}, [2014] = {.lex_state = 0, .external_lex_state = 3}, [2015] = {.lex_state = 0, .external_lex_state = 3}, [2016] = {.lex_state = 0, .external_lex_state = 3}, - [2017] = {.lex_state = 57, .external_lex_state = 3}, - [2018] = {.lex_state = 57, .external_lex_state = 3}, - [2019] = {.lex_state = 7, .external_lex_state = 3}, + [2017] = {.lex_state = 7, .external_lex_state = 3}, + [2018] = {.lex_state = 0, .external_lex_state = 3}, + [2019] = {.lex_state = 57, .external_lex_state = 3}, [2020] = {.lex_state = 57, .external_lex_state = 3}, - [2021] = {.lex_state = 0, .external_lex_state = 3}, + [2021] = {.lex_state = 7, .external_lex_state = 3}, [2022] = {.lex_state = 0, .external_lex_state = 3}, - [2023] = {.lex_state = 7, .external_lex_state = 3}, - [2024] = {.lex_state = 0, .external_lex_state = 3}, - [2025] = {.lex_state = 7, .external_lex_state = 3}, - [2026] = {.lex_state = 0, .external_lex_state = 3}, - [2027] = {.lex_state = 10, .external_lex_state = 3}, - [2028] = {.lex_state = 0, .external_lex_state = 3}, + [2023] = {.lex_state = 0, .external_lex_state = 3}, + [2024] = {.lex_state = 57, .external_lex_state = 3}, + [2025] = {.lex_state = 0, .external_lex_state = 3}, + [2026] = {.lex_state = 57, .external_lex_state = 3}, + [2027] = {.lex_state = 7, .external_lex_state = 3}, + [2028] = {.lex_state = 57, .external_lex_state = 3}, [2029] = {.lex_state = 7, .external_lex_state = 3}, [2030] = {.lex_state = 17, .external_lex_state = 3}, - [2031] = {.lex_state = 0, .external_lex_state = 3}, - [2032] = {.lex_state = 57, .external_lex_state = 3}, + [2031] = {.lex_state = 17, .external_lex_state = 3}, + [2032] = {.lex_state = 7, .external_lex_state = 3}, [2033] = {.lex_state = 57, .external_lex_state = 3}, [2034] = {.lex_state = 0, .external_lex_state = 3}, - [2035] = {.lex_state = 4, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, + [2035] = {.lex_state = 0, .external_lex_state = 3}, + [2036] = {.lex_state = 17, .external_lex_state = 3}, [2037] = {.lex_state = 0, .external_lex_state = 3}, - [2038] = {.lex_state = 0, .external_lex_state = 3}, + [2038] = {.lex_state = 57, .external_lex_state = 3}, [2039] = {.lex_state = 0, .external_lex_state = 3}, - [2040] = {.lex_state = 0, .external_lex_state = 3}, - [2041] = {.lex_state = 0, .external_lex_state = 3}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, + [2040] = {.lex_state = 57, .external_lex_state = 3}, + [2041] = {.lex_state = 7, .external_lex_state = 3}, + [2042] = {.lex_state = 17, .external_lex_state = 3}, [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 57, .external_lex_state = 3}, + [2044] = {.lex_state = 0, .external_lex_state = 3}, [2045] = {.lex_state = 0, .external_lex_state = 3}, [2046] = {.lex_state = 0, .external_lex_state = 3}, [2047] = {.lex_state = 57, .external_lex_state = 3}, [2048] = {.lex_state = 0, .external_lex_state = 3}, [2049] = {.lex_state = 0, .external_lex_state = 3}, - [2050] = {.lex_state = 0, .external_lex_state = 3}, - [2051] = {.lex_state = 57, .external_lex_state = 3}, - [2052] = {.lex_state = 7, .external_lex_state = 3}, - [2053] = {.lex_state = 0, .external_lex_state = 3}, - [2054] = {.lex_state = 0, .external_lex_state = 3}, - [2055] = {.lex_state = 0, .external_lex_state = 3}, + [2050] = {.lex_state = 57, .external_lex_state = 3}, + [2051] = {.lex_state = 0, .external_lex_state = 3}, + [2052] = {.lex_state = 0, .external_lex_state = 3}, + [2053] = {.lex_state = 57, .external_lex_state = 3}, + [2054] = {.lex_state = 7, .external_lex_state = 3}, + [2055] = {.lex_state = 57, .external_lex_state = 3}, [2056] = {.lex_state = 0, .external_lex_state = 3}, - [2057] = {.lex_state = 17, .external_lex_state = 3}, - [2058] = {.lex_state = 0, .external_lex_state = 3}, + [2057] = {.lex_state = 57, .external_lex_state = 3}, + [2058] = {.lex_state = 7, .external_lex_state = 3}, [2059] = {.lex_state = 0, .external_lex_state = 3}, [2060] = {.lex_state = 57, .external_lex_state = 3}, - [2061] = {.lex_state = 0, .external_lex_state = 3}, + [2061] = {.lex_state = 17, .external_lex_state = 3}, [2062] = {.lex_state = 0, .external_lex_state = 3}, - [2063] = {.lex_state = 0, .external_lex_state = 3}, + [2063] = {.lex_state = 57, .external_lex_state = 3}, [2064] = {.lex_state = 0, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, + [2065] = {.lex_state = 0, .external_lex_state = 3}, [2066] = {.lex_state = 0, .external_lex_state = 3}, [2067] = {.lex_state = 57, .external_lex_state = 3}, [2068] = {.lex_state = 0, .external_lex_state = 3}, [2069] = {.lex_state = 0, .external_lex_state = 3}, - [2070] = {.lex_state = 7, .external_lex_state = 3}, + [2070] = {.lex_state = 0, .external_lex_state = 3}, [2071] = {.lex_state = 0, .external_lex_state = 3}, - [2072] = {.lex_state = 57, .external_lex_state = 3}, - [2073] = {.lex_state = 57, .external_lex_state = 3}, - [2074] = {.lex_state = 7, .external_lex_state = 3}, - [2075] = {.lex_state = 0, .external_lex_state = 3}, - [2076] = {.lex_state = 4, .external_lex_state = 3}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, + [2072] = {.lex_state = 4, .external_lex_state = 3}, + [2073] = {.lex_state = 0, .external_lex_state = 3}, + [2074] = {.lex_state = 0, .external_lex_state = 3}, + [2075] = {.lex_state = 57, .external_lex_state = 3}, + [2076] = {.lex_state = 57, .external_lex_state = 3}, + [2077] = {.lex_state = 0, .external_lex_state = 3}, [2078] = {.lex_state = 0, .external_lex_state = 3}, - [2079] = {.lex_state = 17, .external_lex_state = 3}, + [2079] = {.lex_state = 0, .external_lex_state = 3}, [2080] = {.lex_state = 0, .external_lex_state = 3}, - [2081] = {.lex_state = 17, .external_lex_state = 3}, + [2081] = {.lex_state = 0, .external_lex_state = 3}, [2082] = {.lex_state = 0, .external_lex_state = 3}, [2083] = {.lex_state = 0, .external_lex_state = 3}, [2084] = {.lex_state = 0, .external_lex_state = 3}, [2085] = {.lex_state = 0, .external_lex_state = 3}, [2086] = {.lex_state = 0, .external_lex_state = 3}, [2087] = {.lex_state = 0, .external_lex_state = 3}, - [2088] = {.lex_state = 0, .external_lex_state = 3}, - [2089] = {.lex_state = 0, .external_lex_state = 3}, + [2088] = {.lex_state = 57, .external_lex_state = 3}, + [2089] = {.lex_state = 7, .external_lex_state = 3}, [2090] = {.lex_state = 0, .external_lex_state = 3}, [2091] = {.lex_state = 0, .external_lex_state = 3}, - [2092] = {.lex_state = 57, .external_lex_state = 3}, + [2092] = {.lex_state = 0, .external_lex_state = 3}, [2093] = {.lex_state = 0, .external_lex_state = 3}, - [2094] = {.lex_state = 0, .external_lex_state = 3}, - [2095] = {.lex_state = 0, .external_lex_state = 3}, + [2094] = {.lex_state = 7, .external_lex_state = 3}, + [2095] = {.lex_state = 57, .external_lex_state = 3}, [2096] = {.lex_state = 0, .external_lex_state = 3}, [2097] = {.lex_state = 0, .external_lex_state = 3}, [2098] = {.lex_state = 0, .external_lex_state = 3}, [2099] = {.lex_state = 0, .external_lex_state = 3}, [2100] = {.lex_state = 57, .external_lex_state = 3}, - [2101] = {.lex_state = 57, .external_lex_state = 3}, + [2101] = {.lex_state = 0, .external_lex_state = 3}, [2102] = {.lex_state = 0, .external_lex_state = 3}, [2103] = {.lex_state = 0, .external_lex_state = 3}, [2104] = {.lex_state = 0, .external_lex_state = 3}, @@ -7723,43 +7723,43 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2106] = {.lex_state = 0, .external_lex_state = 3}, [2107] = {.lex_state = 0, .external_lex_state = 3}, [2108] = {.lex_state = 57, .external_lex_state = 3}, - [2109] = {.lex_state = 0, .external_lex_state = 5}, - [2110] = {.lex_state = 17, .external_lex_state = 3}, + [2109] = {.lex_state = 0, .external_lex_state = 3}, + [2110] = {.lex_state = 0, .external_lex_state = 3}, [2111] = {.lex_state = 7, .external_lex_state = 3}, [2112] = {.lex_state = 0, .external_lex_state = 3}, [2113] = {.lex_state = 0, .external_lex_state = 3}, [2114] = {.lex_state = 0, .external_lex_state = 3}, - [2115] = {.lex_state = 7, .external_lex_state = 3}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, + [2115] = {.lex_state = 0, .external_lex_state = 3}, + [2116] = {.lex_state = 0, .external_lex_state = 3}, [2117] = {.lex_state = 7, .external_lex_state = 3}, [2118] = {.lex_state = 0, .external_lex_state = 3}, [2119] = {.lex_state = 0, .external_lex_state = 3}, [2120] = {.lex_state = 0, .external_lex_state = 3}, [2121] = {.lex_state = 0, .external_lex_state = 3}, - [2122] = {.lex_state = 57, .external_lex_state = 3}, - [2123] = {.lex_state = 0, .external_lex_state = 3}, + [2122] = {.lex_state = 0, .external_lex_state = 3}, + [2123] = {.lex_state = 7, .external_lex_state = 3}, [2124] = {.lex_state = 0, .external_lex_state = 3}, - [2125] = {.lex_state = 0, .external_lex_state = 3}, + [2125] = {.lex_state = 57, .external_lex_state = 3}, [2126] = {.lex_state = 0, .external_lex_state = 3}, [2127] = {.lex_state = 0, .external_lex_state = 3}, [2128] = {.lex_state = 0, .external_lex_state = 3}, [2129] = {.lex_state = 0, .external_lex_state = 3}, [2130] = {.lex_state = 0, .external_lex_state = 3}, [2131] = {.lex_state = 0, .external_lex_state = 3}, - [2132] = {.lex_state = 57, .external_lex_state = 3}, - [2133] = {.lex_state = 57, .external_lex_state = 3}, + [2132] = {.lex_state = 0, .external_lex_state = 3}, + [2133] = {.lex_state = 0, .external_lex_state = 3}, [2134] = {.lex_state = 0, .external_lex_state = 3}, - [2135] = {.lex_state = 57, .external_lex_state = 3}, + [2135] = {.lex_state = 0, .external_lex_state = 3}, [2136] = {.lex_state = 0, .external_lex_state = 3}, [2137] = {.lex_state = 0, .external_lex_state = 3}, [2138] = {.lex_state = 0, .external_lex_state = 3}, [2139] = {.lex_state = 0, .external_lex_state = 3}, - [2140] = {.lex_state = 0, .external_lex_state = 3}, - [2141] = {.lex_state = 57, .external_lex_state = 3}, - [2142] = {.lex_state = 57, .external_lex_state = 3}, - [2143] = {.lex_state = 7, .external_lex_state = 3}, + [2140] = {.lex_state = 57, .external_lex_state = 3}, + [2141] = {.lex_state = 0, .external_lex_state = 3}, + [2142] = {.lex_state = 0, .external_lex_state = 3}, + [2143] = {.lex_state = 57, .external_lex_state = 3}, [2144] = {.lex_state = 0, .external_lex_state = 3}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, + [2145] = {.lex_state = 7, .external_lex_state = 3}, [2146] = {.lex_state = 0, .external_lex_state = 3}, [2147] = {.lex_state = 0, .external_lex_state = 3}, [2148] = {.lex_state = 0, .external_lex_state = 3}, @@ -7769,266 +7769,269 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2152] = {.lex_state = 0, .external_lex_state = 3}, [2153] = {.lex_state = 0, .external_lex_state = 3}, [2154] = {.lex_state = 0, .external_lex_state = 3}, - [2155] = {.lex_state = 57, .external_lex_state = 3}, + [2155] = {.lex_state = 0, .external_lex_state = 3}, [2156] = {.lex_state = 0, .external_lex_state = 3}, - [2157] = {.lex_state = 0, .external_lex_state = 3}, - [2158] = {.lex_state = 7, .external_lex_state = 3}, + [2157] = {.lex_state = 57, .external_lex_state = 3}, + [2158] = {.lex_state = 57, .external_lex_state = 3}, [2159] = {.lex_state = 57, .external_lex_state = 3}, [2160] = {.lex_state = 0, .external_lex_state = 3}, - [2161] = {.lex_state = 57, .external_lex_state = 3}, - [2162] = {.lex_state = 57, .external_lex_state = 3}, + [2161] = {.lex_state = 7, .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 = 0, .external_lex_state = 3}, - [2166] = {.lex_state = 57, .external_lex_state = 3}, - [2167] = {.lex_state = 7, .external_lex_state = 3}, - [2168] = {.lex_state = 0, .external_lex_state = 3}, + [2166] = {.lex_state = 0, .external_lex_state = 3}, + [2167] = {.lex_state = 0, .external_lex_state = 3}, + [2168] = {.lex_state = 57, .external_lex_state = 3}, [2169] = {.lex_state = 0, .external_lex_state = 3}, [2170] = {.lex_state = 0, .external_lex_state = 3}, [2171] = {.lex_state = 0, .external_lex_state = 3}, [2172] = {.lex_state = 0, .external_lex_state = 3}, - [2173] = {.lex_state = 57, .external_lex_state = 3}, - [2174] = {.lex_state = 0, .external_lex_state = 3}, - [2175] = {.lex_state = 7, .external_lex_state = 3}, - [2176] = {.lex_state = 0, .external_lex_state = 3}, + [2173] = {.lex_state = 7, .external_lex_state = 3}, + [2174] = {.lex_state = 57, .external_lex_state = 3}, + [2175] = {.lex_state = 0, .external_lex_state = 3}, + [2176] = {.lex_state = 10, .external_lex_state = 3}, [2177] = {.lex_state = 0, .external_lex_state = 3}, - [2178] = {.lex_state = 57, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 3}, - [2180] = {.lex_state = 0, .external_lex_state = 3}, + [2178] = {.lex_state = 0, .external_lex_state = 3}, + [2179] = {.lex_state = 0, .external_lex_state = 5}, + [2180] = {.lex_state = 4, .external_lex_state = 3}, [2181] = {.lex_state = 0, .external_lex_state = 3}, - [2182] = {.lex_state = 57, .external_lex_state = 3}, + [2182] = {.lex_state = 0, .external_lex_state = 3}, [2183] = {.lex_state = 0, .external_lex_state = 3}, - [2184] = {.lex_state = 0, .external_lex_state = 3}, + [2184] = {.lex_state = 7, .external_lex_state = 3}, [2185] = {.lex_state = 7, .external_lex_state = 3}, [2186] = {.lex_state = 7, .external_lex_state = 3}, - [2187] = {.lex_state = 7, .external_lex_state = 3}, + [2187] = {.lex_state = 0, .external_lex_state = 3}, [2188] = {.lex_state = 7, .external_lex_state = 3}, - [2189] = {.lex_state = 7, .external_lex_state = 3}, - [2190] = {.lex_state = 7, .external_lex_state = 3}, + [2189] = {.lex_state = 0, .external_lex_state = 3}, + [2190] = {.lex_state = 0, .external_lex_state = 3}, [2191] = {.lex_state = 0, .external_lex_state = 3}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, + [2192] = {.lex_state = 0, .external_lex_state = 3}, [2193] = {.lex_state = 7, .external_lex_state = 3}, [2194] = {.lex_state = 7, .external_lex_state = 3}, - [2195] = {.lex_state = 7, .external_lex_state = 3}, + [2195] = {.lex_state = 0, .external_lex_state = 3}, [2196] = {.lex_state = 7, .external_lex_state = 3}, [2197] = {.lex_state = 7, .external_lex_state = 3}, [2198] = {.lex_state = 0, .external_lex_state = 3}, [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 7, .external_lex_state = 3}, + [2200] = {.lex_state = 57, .external_lex_state = 3}, [2201] = {.lex_state = 7, .external_lex_state = 3}, - [2202] = {.lex_state = 0, .external_lex_state = 3}, - [2203] = {.lex_state = 7, .external_lex_state = 3}, - [2204] = {.lex_state = 0, .external_lex_state = 3}, + [2202] = {.lex_state = 7, .external_lex_state = 3}, + [2203] = {.lex_state = 0, .external_lex_state = 3}, + [2204] = {.lex_state = 57, .external_lex_state = 3}, [2205] = {.lex_state = 7, .external_lex_state = 3}, [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 3}, + [2207] = {.lex_state = 0, .external_lex_state = 3}, [2208] = {.lex_state = 7, .external_lex_state = 3}, - [2209] = {.lex_state = 7, .external_lex_state = 3}, + [2209] = {.lex_state = 0, .external_lex_state = 3}, [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, - [2212] = {.lex_state = 10, .external_lex_state = 3}, - [2213] = {.lex_state = 57, .external_lex_state = 3}, + [2211] = {.lex_state = 10, .external_lex_state = 3}, + [2212] = {.lex_state = 7, .external_lex_state = 3}, + [2213] = {.lex_state = 7, .external_lex_state = 3}, [2214] = {.lex_state = 7, .external_lex_state = 3}, [2215] = {.lex_state = 7, .external_lex_state = 3}, [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 7, .external_lex_state = 3}, - [2218] = {.lex_state = 7, .external_lex_state = 3}, + [2217] = {.lex_state = 0, .external_lex_state = 3}, + [2218] = {.lex_state = 57, .external_lex_state = 3}, [2219] = {.lex_state = 7, .external_lex_state = 3}, [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 0, .external_lex_state = 3}, + [2221] = {.lex_state = 7, .external_lex_state = 3}, [2222] = {.lex_state = 0, .external_lex_state = 3}, [2223] = {.lex_state = 7, .external_lex_state = 3}, - [2224] = {.lex_state = 0, .external_lex_state = 3}, - [2225] = {.lex_state = 10, .external_lex_state = 3}, - [2226] = {.lex_state = 0, .external_lex_state = 3}, + [2224] = {.lex_state = 7, .external_lex_state = 3}, + [2225] = {.lex_state = 7, .external_lex_state = 3}, + [2226] = {.lex_state = 7, .external_lex_state = 3}, [2227] = {.lex_state = 7, .external_lex_state = 3}, [2228] = {.lex_state = 0, .external_lex_state = 3}, - [2229] = {.lex_state = 0, .external_lex_state = 3}, - [2230] = {.lex_state = 0, .external_lex_state = 3}, - [2231] = {.lex_state = 0, .external_lex_state = 3}, - [2232] = {.lex_state = 0, .external_lex_state = 3}, - [2233] = {.lex_state = 57, .external_lex_state = 3}, - [2234] = {.lex_state = 7, .external_lex_state = 3}, - [2235] = {.lex_state = 10, .external_lex_state = 3}, - [2236] = {.lex_state = 7, .external_lex_state = 3}, + [2229] = {.lex_state = 7, .external_lex_state = 3}, + [2230] = {.lex_state = 7, .external_lex_state = 3}, + [2231] = {.lex_state = 7, .external_lex_state = 3}, + [2232] = {.lex_state = 7, .external_lex_state = 3}, + [2233] = {.lex_state = 0, .external_lex_state = 3}, + [2234] = {.lex_state = 0, .external_lex_state = 3}, + [2235] = {.lex_state = 0, .external_lex_state = 3}, + [2236] = {.lex_state = 0, .external_lex_state = 3}, [2237] = {.lex_state = 0, .external_lex_state = 3}, - [2238] = {.lex_state = 0, .external_lex_state = 3}, - [2239] = {.lex_state = 0, .external_lex_state = 3}, + [2238] = {.lex_state = 7, .external_lex_state = 3}, + [2239] = {.lex_state = 7, .external_lex_state = 3}, [2240] = {.lex_state = 7, .external_lex_state = 3}, - [2241] = {.lex_state = 7, .external_lex_state = 3}, + [2241] = {.lex_state = 0, .external_lex_state = 3}, [2242] = {.lex_state = 0, .external_lex_state = 3}, [2243] = {.lex_state = 7, .external_lex_state = 3}, [2244] = {.lex_state = 7, .external_lex_state = 3}, - [2245] = {.lex_state = 7, .external_lex_state = 3}, + [2245] = {.lex_state = 0, .external_lex_state = 3}, [2246] = {.lex_state = 7, .external_lex_state = 3}, [2247] = {.lex_state = 7, .external_lex_state = 3}, [2248] = {.lex_state = 7, .external_lex_state = 3}, - [2249] = {.lex_state = 0, .external_lex_state = 3}, - [2250] = {.lex_state = 10, .external_lex_state = 3}, + [2249] = {.lex_state = 7, .external_lex_state = 3}, + [2250] = {.lex_state = 7, .external_lex_state = 3}, [2251] = {.lex_state = 0, .external_lex_state = 3}, [2252] = {.lex_state = 7, .external_lex_state = 3}, [2253] = {.lex_state = 0, .external_lex_state = 3}, - [2254] = {.lex_state = 0, .external_lex_state = 3}, + [2254] = {.lex_state = 10, .external_lex_state = 3}, [2255] = {.lex_state = 0, .external_lex_state = 3}, - [2256] = {.lex_state = 0, .external_lex_state = 3}, - [2257] = {.lex_state = 0, .external_lex_state = 3}, + [2256] = {.lex_state = 7, .external_lex_state = 3}, + [2257] = {.lex_state = 7, .external_lex_state = 3}, [2258] = {.lex_state = 0, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 3}, - [2260] = {.lex_state = 10, .external_lex_state = 3}, + [2259] = {.lex_state = 0, .external_lex_state = 3}, + [2260] = {.lex_state = 0, .external_lex_state = 3}, [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 0, .external_lex_state = 3}, - [2263] = {.lex_state = 0, .external_lex_state = 3}, + [2262] = {.lex_state = 7, .external_lex_state = 3}, + [2263] = {.lex_state = 7, .external_lex_state = 3}, [2264] = {.lex_state = 0, .external_lex_state = 3}, - [2265] = {.lex_state = 0, .external_lex_state = 3}, - [2266] = {.lex_state = 0, .external_lex_state = 3}, - [2267] = {.lex_state = 0, .external_lex_state = 3}, + [2265] = {.lex_state = 7, .external_lex_state = 3}, + [2266] = {.lex_state = 7, .external_lex_state = 3}, + [2267] = {.lex_state = 10, .external_lex_state = 3}, [2268] = {.lex_state = 0, .external_lex_state = 3}, [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, + [2270] = {.lex_state = 0, .external_lex_state = 3}, [2271] = {.lex_state = 7, .external_lex_state = 3}, [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 0, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 3}, - [2275] = {.lex_state = 0, .external_lex_state = 3}, + [2273] = {.lex_state = 7, .external_lex_state = 3}, + [2274] = {.lex_state = 0, .external_lex_state = 3}, + [2275] = {.lex_state = 7, .external_lex_state = 3}, [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 10, .external_lex_state = 3}, + [2277] = {.lex_state = 7, .external_lex_state = 3}, [2278] = {.lex_state = 7, .external_lex_state = 3}, - [2279] = {.lex_state = 57, .external_lex_state = 3}, + [2279] = {.lex_state = 10, .external_lex_state = 3}, [2280] = {.lex_state = 7, .external_lex_state = 3}, [2281] = {.lex_state = 7, .external_lex_state = 3}, - [2282] = {.lex_state = 7, .external_lex_state = 3}, + [2282] = {.lex_state = 0, .external_lex_state = 3}, [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 3}, - [2285] = {.lex_state = 57, .external_lex_state = 3}, + [2284] = {.lex_state = 0, .external_lex_state = 3}, + [2285] = {.lex_state = 0, .external_lex_state = 3}, [2286] = {.lex_state = 7, .external_lex_state = 3}, [2287] = {.lex_state = 7, .external_lex_state = 3}, [2288] = {.lex_state = 7, .external_lex_state = 3}, - [2289] = {.lex_state = 7, .external_lex_state = 3}, + [2289] = {.lex_state = 0, .external_lex_state = 3}, [2290] = {.lex_state = 7, .external_lex_state = 3}, - [2291] = {.lex_state = 7, .external_lex_state = 3}, - [2292] = {.lex_state = 10, .external_lex_state = 3}, - [2293] = {.lex_state = 7, .external_lex_state = 3}, + [2291] = {.lex_state = 0, .external_lex_state = 3}, + [2292] = {.lex_state = 7, .external_lex_state = 3}, + [2293] = {.lex_state = 10, .external_lex_state = 3}, [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 0, .external_lex_state = 3}, - [2296] = {.lex_state = 0, .external_lex_state = 3}, + [2295] = {.lex_state = 7, .external_lex_state = 3}, + [2296] = {.lex_state = 7, .external_lex_state = 3}, [2297] = {.lex_state = 7, .external_lex_state = 3}, [2298] = {.lex_state = 7, .external_lex_state = 3}, - [2299] = {.lex_state = 7, .external_lex_state = 3}, - [2300] = {.lex_state = 7, .external_lex_state = 3}, - [2301] = {.lex_state = 0, .external_lex_state = 3}, + [2299] = {.lex_state = 0, .external_lex_state = 3}, + [2300] = {.lex_state = 0, .external_lex_state = 3}, + [2301] = {.lex_state = 7, .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}, - [2305] = {.lex_state = 7, .external_lex_state = 3}, - [2306] = {.lex_state = 0, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 3}, + [2304] = {.lex_state = 10, .external_lex_state = 3}, + [2305] = {.lex_state = 10, .external_lex_state = 3}, + [2306] = {.lex_state = 7, .external_lex_state = 3}, + [2307] = {.lex_state = 0, .external_lex_state = 3}, [2308] = {.lex_state = 0, .external_lex_state = 3}, - [2309] = {.lex_state = 7, .external_lex_state = 3}, - [2310] = {.lex_state = 10, .external_lex_state = 3}, - [2311] = {.lex_state = 10, .external_lex_state = 3}, + [2309] = {.lex_state = 0, .external_lex_state = 3}, + [2310] = {.lex_state = 0, .external_lex_state = 3}, + [2311] = {.lex_state = 0, .external_lex_state = 3}, [2312] = {.lex_state = 7, .external_lex_state = 3}, [2313] = {.lex_state = 0, .external_lex_state = 3}, - [2314] = {.lex_state = 7, .external_lex_state = 3}, + [2314] = {.lex_state = 0, .external_lex_state = 3}, [2315] = {.lex_state = 0, .external_lex_state = 3}, - [2316] = {.lex_state = 0, .external_lex_state = 3}, + [2316] = {.lex_state = 7, .external_lex_state = 3}, [2317] = {.lex_state = 0, .external_lex_state = 3}, [2318] = {.lex_state = 0, .external_lex_state = 3}, [2319] = {.lex_state = 0, .external_lex_state = 3}, [2320] = {.lex_state = 0, .external_lex_state = 3}, - [2321] = {.lex_state = 0, .external_lex_state = 3}, - [2322] = {.lex_state = 10, .external_lex_state = 3}, + [2321] = {.lex_state = 7, .external_lex_state = 3}, + [2322] = {.lex_state = 7, .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}, + [2325] = {.lex_state = 7, .external_lex_state = 3}, [2326] = {.lex_state = 0, .external_lex_state = 3}, - [2327] = {.lex_state = 7, .external_lex_state = 3}, + [2327] = {.lex_state = 57, .external_lex_state = 3}, [2328] = {.lex_state = 0, .external_lex_state = 3}, [2329] = {.lex_state = 0, .external_lex_state = 3}, [2330] = {.lex_state = 7, .external_lex_state = 3}, - [2331] = {.lex_state = 7, .external_lex_state = 3}, + [2331] = {.lex_state = 0, .external_lex_state = 3}, [2332] = {.lex_state = 0, .external_lex_state = 3}, [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 7, .external_lex_state = 3}, + [2334] = {.lex_state = 10, .external_lex_state = 3}, [2335] = {.lex_state = 0, .external_lex_state = 3}, - [2336] = {.lex_state = 0, .external_lex_state = 3}, - [2337] = {.lex_state = 0, .external_lex_state = 3}, - [2338] = {.lex_state = 7, .external_lex_state = 3}, + [2336] = {.lex_state = 7, .external_lex_state = 3}, + [2337] = {.lex_state = 7, .external_lex_state = 3}, + [2338] = {.lex_state = 0, .external_lex_state = 3}, [2339] = {.lex_state = 7, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 3}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, + [2340] = {.lex_state = 7, .external_lex_state = 3}, + [2341] = {.lex_state = 7, .external_lex_state = 3}, [2342] = {.lex_state = 0, .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}, - [2346] = {.lex_state = 7, .external_lex_state = 3}, - [2347] = {.lex_state = 7, .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 = 7, .external_lex_state = 3}, + [2350] = {.lex_state = 0, .external_lex_state = 3}, [2351] = {.lex_state = 0, .external_lex_state = 3}, [2352] = {.lex_state = 0, .external_lex_state = 3}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 10, .external_lex_state = 3}, + [2353] = {.lex_state = 7, .external_lex_state = 3}, + [2354] = {.lex_state = 0, .external_lex_state = 3}, [2355] = {.lex_state = 0, .external_lex_state = 3}, - [2356] = {.lex_state = 10, .external_lex_state = 3}, - [2357] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 3}, + [2357] = {.lex_state = 10, .external_lex_state = 3}, [2358] = {.lex_state = 0, .external_lex_state = 3}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, + [2359] = {.lex_state = 10, .external_lex_state = 3}, [2360] = {.lex_state = 0, .external_lex_state = 3}, - [2361] = {.lex_state = 10, .external_lex_state = 3}, + [2361] = {.lex_state = 0, .external_lex_state = 3}, [2362] = {.lex_state = 0, .external_lex_state = 3}, [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 0, .external_lex_state = 3}, - [2365] = {.lex_state = 7, .external_lex_state = 3}, + [2364] = {.lex_state = 10, .external_lex_state = 3}, + [2365] = {.lex_state = 0, .external_lex_state = 3}, [2366] = {.lex_state = 0, .external_lex_state = 3}, - [2367] = {.lex_state = 7, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 3}, + [2367] = {.lex_state = 10, .external_lex_state = 3}, + [2368] = {.lex_state = 7, .external_lex_state = 3}, [2369] = {.lex_state = 0, .external_lex_state = 3}, - [2370] = {.lex_state = 10, .external_lex_state = 3}, - [2371] = {.lex_state = 0, .external_lex_state = 3}, - [2372] = {.lex_state = 10, .external_lex_state = 3}, - [2373] = {.lex_state = 0, .external_lex_state = 3}, + [2370] = {.lex_state = 0, .external_lex_state = 3}, + [2371] = {.lex_state = 7, .external_lex_state = 3}, + [2372] = {.lex_state = 0, .external_lex_state = 3}, + [2373] = {.lex_state = 10, .external_lex_state = 3}, [2374] = {.lex_state = 0, .external_lex_state = 3}, [2375] = {.lex_state = 0, .external_lex_state = 3}, - [2376] = {.lex_state = 10, .external_lex_state = 3}, + [2376] = {.lex_state = 7, .external_lex_state = 3}, [2377] = {.lex_state = 7, .external_lex_state = 3}, [2378] = {.lex_state = 0, .external_lex_state = 3}, [2379] = {.lex_state = 10, .external_lex_state = 3}, - [2380] = {.lex_state = 0, .external_lex_state = 3}, - [2381] = {.lex_state = 7, .external_lex_state = 3}, - [2382] = {.lex_state = 0, .external_lex_state = 3}, + [2380] = {.lex_state = 10, .external_lex_state = 3}, + [2381] = {.lex_state = 10, .external_lex_state = 3}, + [2382] = {.lex_state = 10, .external_lex_state = 3}, [2383] = {.lex_state = 0, .external_lex_state = 3}, [2384] = {.lex_state = 0, .external_lex_state = 3}, - [2385] = {.lex_state = 10, .external_lex_state = 3}, - [2386] = {.lex_state = 10, .external_lex_state = 3}, - [2387] = {.lex_state = 10, .external_lex_state = 3}, - [2388] = {.lex_state = 0, .external_lex_state = 3}, + [2385] = {.lex_state = 7, .external_lex_state = 3}, + [2386] = {.lex_state = 0, .external_lex_state = 3}, + [2387] = {.lex_state = 7, .external_lex_state = 3}, + [2388] = {.lex_state = 10, .external_lex_state = 3}, [2389] = {.lex_state = 0, .external_lex_state = 3}, - [2390] = {.lex_state = 7, .external_lex_state = 3}, - [2391] = {.lex_state = 7, .external_lex_state = 3}, + [2390] = {.lex_state = 10, .external_lex_state = 3}, + [2391] = {.lex_state = 0, .external_lex_state = 3}, [2392] = {.lex_state = 0, .external_lex_state = 3}, - [2393] = {.lex_state = 0, .external_lex_state = 3}, - [2394] = {.lex_state = 7, .external_lex_state = 3}, + [2393] = {.lex_state = 7, .external_lex_state = 3}, + [2394] = {.lex_state = 0, .external_lex_state = 3}, [2395] = {.lex_state = 0, .external_lex_state = 3}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, + [2396] = {.lex_state = 10, .external_lex_state = 3}, [2397] = {.lex_state = 7, .external_lex_state = 3}, [2398] = {.lex_state = 0, .external_lex_state = 3}, [2399] = {.lex_state = 7, .external_lex_state = 3}, [2400] = {.lex_state = 0, .external_lex_state = 3}, - [2401] = {.lex_state = 7, .external_lex_state = 3}, - [2402] = {.lex_state = 0, .external_lex_state = 3}, - [2403] = {.lex_state = 7, .external_lex_state = 3}, - [2404] = {.lex_state = 7, .external_lex_state = 3}, - [2405] = {.lex_state = 7, .external_lex_state = 3}, + [2401] = {.lex_state = 0, .external_lex_state = 3}, + [2402] = {.lex_state = 7, .external_lex_state = 3}, + [2403] = {.lex_state = 0, .external_lex_state = 3}, + [2404] = {.lex_state = 0, .external_lex_state = 3}, + [2405] = {.lex_state = 0, .external_lex_state = 3}, [2406] = {.lex_state = 7, .external_lex_state = 3}, [2407] = {.lex_state = 7, .external_lex_state = 3}, [2408] = {.lex_state = 7, .external_lex_state = 3}, [2409] = {.lex_state = 0, .external_lex_state = 3}, - [2410] = {.lex_state = 0, .external_lex_state = 3}, + [2410] = {.lex_state = 7, .external_lex_state = 3}, [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 0, .external_lex_state = 3}, - [2413] = {.lex_state = 0, .external_lex_state = 3}, - [2414] = {.lex_state = 7, .external_lex_state = 3}, + [2412] = {.lex_state = 7, .external_lex_state = 3}, + [2413] = {.lex_state = 7, .external_lex_state = 3}, + [2414] = {.lex_state = 0, .external_lex_state = 3}, + [2415] = {.lex_state = 7, .external_lex_state = 3}, + [2416] = {.lex_state = 0, .external_lex_state = 3}, + [2417] = {.lex_state = 7, .external_lex_state = 3}, }; enum { @@ -8210,54 +8213,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2332), - [sym__statement] = STATE(2), - [sym_empty_statement] = STATE(2), - [sym__expression_statement] = STATE(2), - [sym_macro_definition] = STATE(2), - [sym_attribute_item] = STATE(2), - [sym_inner_attribute_item] = STATE(2), - [sym_mod_item] = STATE(2), - [sym_foreign_mod_item] = STATE(2), - [sym_struct_item] = STATE(2), - [sym_union_item] = STATE(2), - [sym_enum_item] = STATE(2), - [sym_extern_crate_declaration] = STATE(2), - [sym_const_item] = STATE(2), - [sym_static_item] = STATE(2), - [sym_type_item] = STATE(2), - [sym_function_item] = STATE(2), - [sym_function_signature_item] = STATE(2), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(2), - [sym_trait_item] = STATE(2), - [sym_associated_type] = STATE(2), - [sym_let_declaration] = STATE(2), - [sym_use_declaration] = STATE(2), - [sym_extern_modifier] = STATE(1434), + [sym_source_file] = STATE(2317), + [sym__statement] = STATE(4), + [sym_empty_statement] = STATE(4), + [sym__expression_statement] = STATE(4), + [sym_macro_definition] = STATE(4), + [sym_attribute_item] = STATE(4), + [sym_inner_attribute_item] = STATE(4), + [sym_mod_item] = STATE(4), + [sym_foreign_mod_item] = STATE(4), + [sym_struct_item] = STATE(4), + [sym_union_item] = STATE(4), + [sym_enum_item] = STATE(4), + [sym_extern_crate_declaration] = STATE(4), + [sym_const_item] = STATE(4), + [sym_static_item] = STATE(4), + [sym_type_item] = STATE(4), + [sym_function_item] = STATE(4), + [sym_function_signature_item] = STATE(4), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(4), + [sym_trait_item] = STATE(4), + [sym_associated_type] = STATE(4), + [sym_let_declaration] = STATE(4), + [sym_use_declaration] = STATE(4), + [sym_extern_modifier] = STATE(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1213), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1212), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -8266,22 +8269,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), @@ -8357,53 +8360,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [2] = { - [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(2330), - [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(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1213), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1126), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -8412,28 +8415,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(103), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8503,199 +8506,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [3] = { - [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(2330), - [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(1434), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(105), - [sym_identifier] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(110), - [anon_sym_macro_rules_BANG] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_u8] = ACTIONS(128), - [anon_sym_i8] = ACTIONS(128), - [anon_sym_u16] = ACTIONS(128), - [anon_sym_i16] = ACTIONS(128), - [anon_sym_u32] = ACTIONS(128), - [anon_sym_i32] = ACTIONS(128), - [anon_sym_u64] = ACTIONS(128), - [anon_sym_i64] = ACTIONS(128), - [anon_sym_u128] = ACTIONS(128), - [anon_sym_i128] = ACTIONS(128), - [anon_sym_isize] = ACTIONS(128), - [anon_sym_usize] = ACTIONS(128), - [anon_sym_f32] = ACTIONS(128), - [anon_sym_f64] = ACTIONS(128), - [anon_sym_bool] = ACTIONS(128), - [anon_sym_str] = ACTIONS(128), - [anon_sym_char] = ACTIONS(128), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_async] = ACTIONS(134), - [anon_sym_break] = ACTIONS(137), - [anon_sym_const] = ACTIONS(140), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_default] = ACTIONS(146), - [anon_sym_enum] = ACTIONS(149), - [anon_sym_fn] = ACTIONS(152), - [anon_sym_for] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_impl] = ACTIONS(161), - [anon_sym_let] = ACTIONS(164), - [anon_sym_loop] = ACTIONS(167), - [anon_sym_match] = ACTIONS(170), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_trait] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_union] = ACTIONS(194), - [anon_sym_unsafe] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(212), - [anon_sym_COLON_COLON] = ACTIONS(215), - [anon_sym_AMP] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_move] = ACTIONS(227), - [sym_integer_literal] = ACTIONS(230), - [aux_sym_string_literal_token1] = ACTIONS(233), - [sym_char_literal] = ACTIONS(230), - [anon_sym_true] = ACTIONS(236), - [anon_sym_false] = ACTIONS(236), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(239), - [sym_super] = ACTIONS(242), - [sym_crate] = ACTIONS(245), - [sym_metavariable] = ACTIONS(248), - [sym_raw_string_literal] = ACTIONS(230), - [sym_float_literal] = ACTIONS(230), - [sym_block_comment] = ACTIONS(3), - }, - [4] = { - [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(2330), - [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(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1127), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1119), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -8704,28 +8561,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(251), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8794,54 +8651,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [5] = { - [sym__statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym__expression_statement] = STATE(12), - [sym_macro_definition] = STATE(12), - [sym_attribute_item] = STATE(12), - [sym_inner_attribute_item] = STATE(12), - [sym_mod_item] = STATE(12), - [sym_foreign_mod_item] = STATE(12), - [sym_struct_item] = STATE(12), - [sym_union_item] = STATE(12), - [sym_enum_item] = STATE(12), - [sym_extern_crate_declaration] = STATE(12), - [sym_const_item] = STATE(12), - [sym_static_item] = STATE(12), - [sym_type_item] = STATE(12), - [sym_function_item] = STATE(12), - [sym_function_signature_item] = STATE(12), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(12), - [sym_trait_item] = STATE(12), - [sym_associated_type] = STATE(12), - [sym_let_declaration] = STATE(12), - [sym_use_declaration] = STATE(12), - [sym_extern_modifier] = STATE(1434), + [4] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym__expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1102), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1212), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -8850,28 +8707,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(107), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -8940,54 +8797,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [6] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [5] = { + [sym__statement] = STATE(2), + [sym_empty_statement] = STATE(2), + [sym__expression_statement] = STATE(2), + [sym_macro_definition] = STATE(2), + [sym_attribute_item] = STATE(2), + [sym_inner_attribute_item] = STATE(2), + [sym_mod_item] = STATE(2), + [sym_foreign_mod_item] = STATE(2), + [sym_struct_item] = STATE(2), + [sym_union_item] = STATE(2), + [sym_enum_item] = STATE(2), + [sym_extern_crate_declaration] = STATE(2), + [sym_const_item] = STATE(2), + [sym_static_item] = STATE(2), + [sym_type_item] = STATE(2), + [sym_function_item] = STATE(2), + [sym_function_signature_item] = STATE(2), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(2), + [sym_trait_item] = STATE(2), + [sym_associated_type] = STATE(2), + [sym_let_declaration] = STATE(2), + [sym_use_declaration] = STATE(2), + [sym_extern_modifier] = STATE(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1121), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1129), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -8996,28 +8853,28 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(255), + [anon_sym_RBRACE] = ACTIONS(109), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -9086,54 +8943,200 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [6] = { + [sym__statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym__expression_statement] = STATE(6), + [sym_macro_definition] = STATE(6), + [sym_attribute_item] = STATE(6), + [sym_inner_attribute_item] = STATE(6), + [sym_mod_item] = STATE(6), + [sym_foreign_mod_item] = STATE(6), + [sym_struct_item] = STATE(6), + [sym_union_item] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_extern_crate_declaration] = STATE(6), + [sym_const_item] = STATE(6), + [sym_static_item] = STATE(6), + [sym_type_item] = STATE(6), + [sym_function_item] = STATE(6), + [sym_function_signature_item] = STATE(6), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(6), + [sym_trait_item] = STATE(6), + [sym_associated_type] = STATE(6), + [sym_let_declaration] = STATE(6), + [sym_use_declaration] = STATE(6), + [sym_extern_modifier] = STATE(1418), + [sym_visibility_modifier] = STATE(1257), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(57), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(111), + [sym_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_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(245), + [sym_super] = ACTIONS(248), + [sym_crate] = ACTIONS(251), + [sym_metavariable] = ACTIONS(254), + [sym_raw_string_literal] = ACTIONS(236), + [sym_float_literal] = ACTIONS(236), + [sym_block_comment] = ACTIONS(3), + }, [7] = { - [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(2330), - [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(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1126), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1118), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -9142,22 +9145,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -9233,53 +9236,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [8] = { - [sym__statement] = STATE(16), - [sym_empty_statement] = STATE(16), - [sym__expression_statement] = STATE(16), - [sym_macro_definition] = STATE(16), - [sym_attribute_item] = STATE(16), - [sym_inner_attribute_item] = STATE(16), - [sym_mod_item] = STATE(16), - [sym_foreign_mod_item] = STATE(16), - [sym_struct_item] = STATE(16), - [sym_union_item] = STATE(16), - [sym_enum_item] = STATE(16), - [sym_extern_crate_declaration] = STATE(16), - [sym_const_item] = STATE(16), - [sym_static_item] = STATE(16), - [sym_type_item] = STATE(16), - [sym_function_item] = STATE(16), - [sym_function_signature_item] = STATE(16), - [sym_function_modifiers] = STATE(2330), - [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(1434), + [sym__statement] = STATE(10), + [sym_empty_statement] = STATE(10), + [sym__expression_statement] = STATE(10), + [sym_macro_definition] = STATE(10), + [sym_attribute_item] = STATE(10), + [sym_inner_attribute_item] = STATE(10), + [sym_mod_item] = STATE(10), + [sym_foreign_mod_item] = STATE(10), + [sym_struct_item] = STATE(10), + [sym_union_item] = STATE(10), + [sym_enum_item] = STATE(10), + [sym_extern_crate_declaration] = STATE(10), + [sym_const_item] = STATE(10), + [sym_static_item] = STATE(10), + [sym_type_item] = STATE(10), + [sym_function_item] = STATE(10), + [sym_function_signature_item] = STATE(10), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(10), + [sym_trait_item] = STATE(10), + [sym_associated_type] = STATE(10), + [sym_let_declaration] = STATE(10), + [sym_use_declaration] = STATE(10), + [sym_extern_modifier] = STATE(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1149), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1150), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -9288,22 +9291,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -9379,53 +9382,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [9] = { - [sym__statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym__expression_statement] = STATE(6), - [sym_macro_definition] = STATE(6), - [sym_attribute_item] = STATE(6), - [sym_inner_attribute_item] = STATE(6), - [sym_mod_item] = STATE(6), - [sym_foreign_mod_item] = STATE(6), - [sym_struct_item] = STATE(6), - [sym_union_item] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_extern_crate_declaration] = STATE(6), - [sym_const_item] = STATE(6), - [sym_static_item] = STATE(6), - [sym_type_item] = STATE(6), - [sym_function_item] = STATE(6), - [sym_function_signature_item] = STATE(6), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(6), - [sym_trait_item] = STATE(6), - [sym_associated_type] = STATE(6), - [sym_let_declaration] = STATE(6), - [sym_use_declaration] = STATE(6), - [sym_extern_modifier] = STATE(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1122), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1113), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -9434,22 +9437,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -9525,199 +9528,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [10] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), - [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1213), - [sym_macro_invocation] = STATE(80), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(60), - [sym_if_let_expression] = STATE(60), - [sym_match_expression] = STATE(60), - [sym_while_expression] = STATE(60), - [sym_while_let_expression] = STATE(60), - [sym_loop_expression] = STATE(60), - [sym_for_expression] = STATE(60), - [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(60), - [sym_async_block] = STATE(60), - [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(107), - [anon_sym_SEMI] = ACTIONS(110), - [anon_sym_macro_rules_BANG] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(116), - [anon_sym_LBRACE] = ACTIONS(119), - [anon_sym_RBRACE] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(122), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_u8] = ACTIONS(128), - [anon_sym_i8] = ACTIONS(128), - [anon_sym_u16] = ACTIONS(128), - [anon_sym_i16] = ACTIONS(128), - [anon_sym_u32] = ACTIONS(128), - [anon_sym_i32] = ACTIONS(128), - [anon_sym_u64] = ACTIONS(128), - [anon_sym_i64] = ACTIONS(128), - [anon_sym_u128] = ACTIONS(128), - [anon_sym_i128] = ACTIONS(128), - [anon_sym_isize] = ACTIONS(128), - [anon_sym_usize] = ACTIONS(128), - [anon_sym_f32] = ACTIONS(128), - [anon_sym_f64] = ACTIONS(128), - [anon_sym_bool] = ACTIONS(128), - [anon_sym_str] = ACTIONS(128), - [anon_sym_char] = ACTIONS(128), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_async] = ACTIONS(134), - [anon_sym_break] = ACTIONS(137), - [anon_sym_const] = ACTIONS(140), - [anon_sym_continue] = ACTIONS(143), - [anon_sym_default] = ACTIONS(146), - [anon_sym_enum] = ACTIONS(149), - [anon_sym_fn] = ACTIONS(152), - [anon_sym_for] = ACTIONS(155), - [anon_sym_if] = ACTIONS(158), - [anon_sym_impl] = ACTIONS(161), - [anon_sym_let] = ACTIONS(164), - [anon_sym_loop] = ACTIONS(167), - [anon_sym_match] = ACTIONS(170), - [anon_sym_mod] = ACTIONS(173), - [anon_sym_pub] = ACTIONS(176), - [anon_sym_return] = ACTIONS(179), - [anon_sym_static] = ACTIONS(182), - [anon_sym_struct] = ACTIONS(185), - [anon_sym_trait] = ACTIONS(188), - [anon_sym_type] = ACTIONS(191), - [anon_sym_union] = ACTIONS(194), - [anon_sym_unsafe] = ACTIONS(197), - [anon_sym_use] = ACTIONS(200), - [anon_sym_while] = ACTIONS(203), - [anon_sym_POUND] = ACTIONS(206), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(212), - [anon_sym_COLON_COLON] = ACTIONS(215), - [anon_sym_AMP] = ACTIONS(218), - [anon_sym_DOT_DOT] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_move] = ACTIONS(227), - [sym_integer_literal] = ACTIONS(230), - [aux_sym_string_literal_token1] = ACTIONS(233), - [sym_char_literal] = ACTIONS(230), - [anon_sym_true] = ACTIONS(236), - [anon_sym_false] = ACTIONS(236), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(239), - [sym_super] = ACTIONS(242), - [sym_crate] = ACTIONS(245), - [sym_metavariable] = ACTIONS(248), - [sym_raw_string_literal] = ACTIONS(230), - [sym_float_literal] = ACTIONS(230), - [sym_block_comment] = ACTIONS(3), - }, - [11] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1125), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1139), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -9726,22 +9583,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -9816,54 +9673,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [12] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [11] = { + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1091), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1098), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -9872,22 +9729,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -9962,54 +9819,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [13] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1142), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1124), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -10018,22 +9875,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10108,54 +9965,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [14] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1123), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1114), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -10164,22 +10021,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10254,54 +10111,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [15] = { - [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(2330), - [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(1434), + [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(2316), + [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(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1124), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1133), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -10310,22 +10167,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10400,54 +10257,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [16] = { - [sym__statement] = STATE(10), - [sym_empty_statement] = STATE(10), - [sym__expression_statement] = STATE(10), - [sym_macro_definition] = STATE(10), - [sym_attribute_item] = STATE(10), - [sym_inner_attribute_item] = STATE(10), - [sym_mod_item] = STATE(10), - [sym_foreign_mod_item] = STATE(10), - [sym_struct_item] = STATE(10), - [sym_union_item] = STATE(10), - [sym_enum_item] = STATE(10), - [sym_extern_crate_declaration] = STATE(10), - [sym_const_item] = STATE(10), - [sym_static_item] = STATE(10), - [sym_type_item] = STATE(10), - [sym_function_item] = STATE(10), - [sym_function_signature_item] = STATE(10), - [sym_function_modifiers] = STATE(2330), - [sym_impl_item] = STATE(10), - [sym_trait_item] = STATE(10), - [sym_associated_type] = STATE(10), - [sym_let_declaration] = STATE(10), - [sym_use_declaration] = STATE(10), - [sym_extern_modifier] = STATE(1434), + [15] = { + [sym__statement] = STATE(12), + [sym_empty_statement] = STATE(12), + [sym__expression_statement] = STATE(12), + [sym_macro_definition] = STATE(12), + [sym_attribute_item] = STATE(12), + [sym_inner_attribute_item] = STATE(12), + [sym_mod_item] = STATE(12), + [sym_foreign_mod_item] = STATE(12), + [sym_struct_item] = STATE(12), + [sym_union_item] = STATE(12), + [sym_enum_item] = STATE(12), + [sym_extern_crate_declaration] = STATE(12), + [sym_const_item] = STATE(12), + [sym_static_item] = STATE(12), + [sym_type_item] = STATE(12), + [sym_function_item] = STATE(12), + [sym_function_signature_item] = STATE(12), + [sym_function_modifiers] = STATE(2316), + [sym_impl_item] = STATE(12), + [sym_trait_item] = STATE(12), + [sym_associated_type] = STATE(12), + [sym_let_declaration] = STATE(12), + [sym_use_declaration] = STATE(12), + [sym_extern_modifier] = STATE(1418), [sym_visibility_modifier] = STATE(1257), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1144), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1125), [sym_macro_invocation] = STATE(57), - [sym_scoped_identifier] = STATE(1088), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), [sym_if_expression] = STATE(60), [sym_if_let_expression] = STATE(60), [sym_match_expression] = STATE(60), @@ -10456,22 +10313,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_loop_expression] = STATE(60), [sym_for_expression] = STATE(60), [sym_const_block] = STATE(60), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2322), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), [sym_unsafe_block] = STATE(60), [sym_async_block] = STATE(60), [sym_block] = STATE(60), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(7), [anon_sym_SEMI] = ACTIONS(9), [anon_sym_macro_rules_BANG] = ACTIONS(11), @@ -10546,51 +10403,197 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [16] = { + [sym__statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym__expression_statement] = STATE(16), + [sym_macro_definition] = STATE(16), + [sym_attribute_item] = STATE(16), + [sym_inner_attribute_item] = STATE(16), + [sym_mod_item] = STATE(16), + [sym_foreign_mod_item] = STATE(16), + [sym_struct_item] = STATE(16), + [sym_union_item] = STATE(16), + [sym_enum_item] = STATE(16), + [sym_extern_crate_declaration] = STATE(16), + [sym_const_item] = STATE(16), + [sym_static_item] = STATE(16), + [sym_type_item] = STATE(16), + [sym_function_item] = STATE(16), + [sym_function_signature_item] = STATE(16), + [sym_function_modifiers] = STATE(2316), + [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(1418), + [sym_visibility_modifier] = STATE(1257), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1212), + [sym_macro_invocation] = STATE(83), + [sym_scoped_identifier] = STATE(1082), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(60), + [sym_if_let_expression] = STATE(60), + [sym_match_expression] = STATE(60), + [sym_while_expression] = STATE(60), + [sym_while_let_expression] = STATE(60), + [sym_loop_expression] = STATE(60), + [sym_for_expression] = STATE(60), + [sym_const_block] = STATE(60), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2304), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(60), + [sym_async_block] = STATE(60), + [sym_block] = STATE(60), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_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_RBRACE] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(128), + [anon_sym_STAR] = ACTIONS(131), + [anon_sym_u8] = ACTIONS(134), + [anon_sym_i8] = ACTIONS(134), + [anon_sym_u16] = ACTIONS(134), + [anon_sym_i16] = ACTIONS(134), + [anon_sym_u32] = ACTIONS(134), + [anon_sym_i32] = ACTIONS(134), + [anon_sym_u64] = ACTIONS(134), + [anon_sym_i64] = ACTIONS(134), + [anon_sym_u128] = ACTIONS(134), + [anon_sym_i128] = ACTIONS(134), + [anon_sym_isize] = ACTIONS(134), + [anon_sym_usize] = ACTIONS(134), + [anon_sym_f32] = ACTIONS(134), + [anon_sym_f64] = ACTIONS(134), + [anon_sym_bool] = ACTIONS(134), + [anon_sym_str] = ACTIONS(134), + [anon_sym_char] = ACTIONS(134), + [anon_sym_SQUOTE] = ACTIONS(137), + [anon_sym_async] = ACTIONS(140), + [anon_sym_break] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_default] = ACTIONS(152), + [anon_sym_enum] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_for] = ACTIONS(161), + [anon_sym_if] = ACTIONS(164), + [anon_sym_impl] = ACTIONS(167), + [anon_sym_let] = ACTIONS(170), + [anon_sym_loop] = ACTIONS(173), + [anon_sym_match] = ACTIONS(176), + [anon_sym_mod] = ACTIONS(179), + [anon_sym_pub] = ACTIONS(182), + [anon_sym_return] = ACTIONS(185), + [anon_sym_static] = ACTIONS(188), + [anon_sym_struct] = ACTIONS(191), + [anon_sym_trait] = ACTIONS(194), + [anon_sym_type] = ACTIONS(197), + [anon_sym_union] = ACTIONS(200), + [anon_sym_unsafe] = ACTIONS(203), + [anon_sym_use] = ACTIONS(206), + [anon_sym_while] = ACTIONS(209), + [anon_sym_POUND] = ACTIONS(212), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_extern] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(218), + [anon_sym_COLON_COLON] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(224), + [anon_sym_DOT_DOT] = ACTIONS(227), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PIPE] = 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), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(245), + [sym_super] = ACTIONS(248), + [sym_crate] = ACTIONS(251), + [sym_metavariable] = ACTIONS(254), + [sym_raw_string_literal] = ACTIONS(236), + [sym_float_literal] = ACTIONS(236), + [sym_block_comment] = ACTIONS(3), + }, [17] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1018), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(967), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(277), [anon_sym_LPAREN] = ACTIONS(277), @@ -10686,50 +10689,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [18] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(988), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1036), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(17), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(305), [anon_sym_LPAREN] = ACTIONS(305), @@ -10759,7 +10762,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(309), [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), @@ -10824,62 +10827,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [19] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(972), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(17), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(998), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(311), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_EQ_GT] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_RBRACK] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_EQ_GT] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(311), + [anon_sym_PLUS] = ACTIONS(313), + [anon_sym_STAR] = ACTIONS(303), + [anon_sym_QMARK] = ACTIONS(311), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -10897,8 +10900,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(21), [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(313), - [anon_sym_as] = ACTIONS(311), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(313), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -10913,40 +10916,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(311), - [anon_sym_COMMA] = ACTIONS(309), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(309), - [anon_sym_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(309), - [anon_sym_PIPE_PIPE] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_EQ_EQ] = ACTIONS(309), - [anon_sym_BANG_EQ] = ACTIONS(309), - [anon_sym_LT_EQ] = ACTIONS(309), - [anon_sym_GT_EQ] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_SLASH] = ACTIONS(311), - [anon_sym_PERCENT] = ACTIONS(311), - [anon_sym_PLUS_EQ] = ACTIONS(309), - [anon_sym_DASH_EQ] = ACTIONS(309), - [anon_sym_STAR_EQ] = ACTIONS(309), - [anon_sym_SLASH_EQ] = ACTIONS(309), - [anon_sym_PERCENT_EQ] = ACTIONS(309), - [anon_sym_AMP_EQ] = ACTIONS(309), - [anon_sym_PIPE_EQ] = ACTIONS(309), - [anon_sym_CARET_EQ] = ACTIONS(309), - [anon_sym_LT_LT_EQ] = ACTIONS(309), - [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(313), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -10962,62 +10965,62 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [20] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(981), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(794), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(315), + [anon_sym_SEMI] = ACTIONS(323), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(315), + [anon_sym_RPAREN] = ACTIONS(323), [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_EQ_GT] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_EQ_GT] = ACTIONS(323), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_RBRACK] = ACTIONS(323), + [anon_sym_PLUS] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_QMARK] = ACTIONS(323), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), [anon_sym_u16] = ACTIONS(21), @@ -11036,7 +11039,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(317), + [anon_sym_as] = ACTIONS(325), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), @@ -11051,40 +11054,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(303), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_COMMA] = ACTIONS(315), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_COMMA] = ACTIONS(323), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(325), [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(321), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(323), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_AMP] = ACTIONS(317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(319), + [anon_sym_DOT_DOT_EQ] = ACTIONS(323), [anon_sym_DASH] = ACTIONS(303), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(323), + [anon_sym_BANG_EQ] = ACTIONS(323), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_GT_EQ] = ACTIONS(323), + [anon_sym_LT_LT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(323), + [anon_sym_DASH_EQ] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(323), + [anon_sym_SLASH_EQ] = ACTIONS(323), + [anon_sym_PERCENT_EQ] = ACTIONS(323), + [anon_sym_AMP_EQ] = ACTIONS(323), + [anon_sym_PIPE_EQ] = ACTIONS(323), + [anon_sym_CARET_EQ] = ACTIONS(323), + [anon_sym_LT_LT_EQ] = ACTIONS(323), + [anon_sym_GT_GT_EQ] = ACTIONS(323), [anon_sym_move] = ACTIONS(87), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(325), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -11100,50 +11103,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [21] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(994), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1057), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_SEMI] = ACTIONS(327), [anon_sym_LPAREN] = ACTIONS(327), @@ -11238,50 +11241,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [22] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1166), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1180), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(277), [anon_sym_LBRACE] = ACTIONS(277), @@ -11371,182 +11374,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [23] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_LBRACK] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(329), - [anon_sym_STAR] = ACTIONS(329), - [anon_sym_QMARK] = ACTIONS(327), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(329), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(329), - [anon_sym_DOT_DOT_DOT] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(327), - [anon_sym_DASH] = ACTIONS(329), - [anon_sym_AMP_AMP] = ACTIONS(327), - [anon_sym_PIPE_PIPE] = ACTIONS(327), - [anon_sym_PIPE] = ACTIONS(329), - [anon_sym_CARET] = ACTIONS(329), - [anon_sym_EQ_EQ] = ACTIONS(327), - [anon_sym_BANG_EQ] = ACTIONS(327), - [anon_sym_LT_EQ] = ACTIONS(327), - [anon_sym_GT_EQ] = ACTIONS(327), - [anon_sym_LT_LT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_SLASH] = ACTIONS(329), - [anon_sym_PERCENT] = ACTIONS(329), - [anon_sym_PLUS_EQ] = ACTIONS(327), - [anon_sym_DASH_EQ] = ACTIONS(327), - [anon_sym_STAR_EQ] = ACTIONS(327), - [anon_sym_SLASH_EQ] = ACTIONS(327), - [anon_sym_PERCENT_EQ] = ACTIONS(327), - [anon_sym_AMP_EQ] = ACTIONS(327), - [anon_sym_PIPE_EQ] = ACTIONS(327), - [anon_sym_CARET_EQ] = ACTIONS(327), - [anon_sym_LT_LT_EQ] = ACTIONS(327), - [anon_sym_GT_GT_EQ] = ACTIONS(327), - [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(329), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [24] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1186), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1201), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(22), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(305), [anon_sym_LBRACE] = ACTIONS(305), @@ -11571,7 +11442,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(333), [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(309), [anon_sym_as] = ACTIONS(307), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), @@ -11634,58 +11505,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [25] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1154), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(22), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [24] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1184), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(311), - [anon_sym_QMARK] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(327), + [anon_sym_PLUS] = ACTIONS(329), + [anon_sym_STAR] = ACTIONS(329), + [anon_sym_QMARK] = ACTIONS(327), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -11703,8 +11574,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(333), [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(313), - [anon_sym_as] = ACTIONS(311), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(329), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -11719,39 +11590,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), + [anon_sym_EQ] = ACTIONS(329), + [anon_sym_LT] = ACTIONS(329), + [anon_sym_GT] = ACTIONS(329), [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(309), - [anon_sym_DOT_DOT] = ACTIONS(311), - [anon_sym_DOT_DOT_EQ] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(309), - [anon_sym_PIPE_PIPE] = ACTIONS(309), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_EQ_EQ] = ACTIONS(309), - [anon_sym_BANG_EQ] = ACTIONS(309), - [anon_sym_LT_EQ] = ACTIONS(309), - [anon_sym_GT_EQ] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_SLASH] = ACTIONS(311), - [anon_sym_PERCENT] = ACTIONS(311), - [anon_sym_PLUS_EQ] = ACTIONS(309), - [anon_sym_DASH_EQ] = ACTIONS(309), - [anon_sym_STAR_EQ] = ACTIONS(309), - [anon_sym_SLASH_EQ] = ACTIONS(309), - [anon_sym_PERCENT_EQ] = ACTIONS(309), - [anon_sym_AMP_EQ] = ACTIONS(309), - [anon_sym_PIPE_EQ] = ACTIONS(309), - [anon_sym_CARET_EQ] = ACTIONS(309), - [anon_sym_LT_LT_EQ] = ACTIONS(309), - [anon_sym_GT_GT_EQ] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(327), + [anon_sym_DASH] = ACTIONS(329), + [anon_sym_AMP_AMP] = ACTIONS(327), + [anon_sym_PIPE_PIPE] = ACTIONS(327), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_EQ_EQ] = ACTIONS(327), + [anon_sym_BANG_EQ] = ACTIONS(327), + [anon_sym_LT_EQ] = ACTIONS(327), + [anon_sym_GT_EQ] = ACTIONS(327), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_SLASH] = ACTIONS(329), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_PLUS_EQ] = ACTIONS(327), + [anon_sym_DASH_EQ] = ACTIONS(327), + [anon_sym_STAR_EQ] = ACTIONS(327), + [anon_sym_SLASH_EQ] = ACTIONS(327), + [anon_sym_PERCENT_EQ] = ACTIONS(327), + [anon_sym_AMP_EQ] = ACTIONS(327), + [anon_sym_PIPE_EQ] = ACTIONS(327), + [anon_sym_CARET_EQ] = ACTIONS(327), + [anon_sym_LT_LT_EQ] = ACTIONS(327), + [anon_sym_GT_GT_EQ] = ACTIONS(327), [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(311), + [anon_sym_DOT] = ACTIONS(329), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -11766,58 +11637,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [26] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1187), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [25] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1192), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_PLUS] = ACTIONS(313), [anon_sym_STAR] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(315), + [anon_sym_QMARK] = ACTIONS(311), [anon_sym_u8] = ACTIONS(333), [anon_sym_i8] = ACTIONS(333), [anon_sym_u16] = ACTIONS(333), @@ -11836,7 +11707,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(333), [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_as] = ACTIONS(317), + [anon_sym_as] = ACTIONS(313), [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), @@ -11851,39 +11722,171 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_GT] = ACTIONS(317), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(313), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(311), [anon_sym_DOT_DOT] = ACTIONS(353), - [anon_sym_DOT_DOT_EQ] = ACTIONS(315), + [anon_sym_DOT_DOT_EQ] = ACTIONS(311), [anon_sym_DASH] = ACTIONS(339), - [anon_sym_AMP_AMP] = ACTIONS(315), - [anon_sym_PIPE_PIPE] = ACTIONS(315), - [anon_sym_PIPE] = ACTIONS(325), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_EQ_EQ] = ACTIONS(315), - [anon_sym_BANG_EQ] = ACTIONS(315), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_GT_EQ] = ACTIONS(315), - [anon_sym_LT_LT] = ACTIONS(317), - [anon_sym_GT_GT] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(317), - [anon_sym_PERCENT] = ACTIONS(317), - [anon_sym_PLUS_EQ] = ACTIONS(315), - [anon_sym_DASH_EQ] = ACTIONS(315), - [anon_sym_STAR_EQ] = ACTIONS(315), - [anon_sym_SLASH_EQ] = ACTIONS(315), - [anon_sym_PERCENT_EQ] = ACTIONS(315), - [anon_sym_AMP_EQ] = ACTIONS(315), - [anon_sym_PIPE_EQ] = ACTIONS(315), - [anon_sym_CARET_EQ] = ACTIONS(315), - [anon_sym_LT_LT_EQ] = ACTIONS(315), - [anon_sym_GT_GT_EQ] = ACTIONS(315), + [anon_sym_AMP_AMP] = ACTIONS(311), + [anon_sym_PIPE_PIPE] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(313), + [anon_sym_EQ_EQ] = ACTIONS(311), + [anon_sym_BANG_EQ] = ACTIONS(311), + [anon_sym_LT_EQ] = ACTIONS(311), + [anon_sym_GT_EQ] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_SLASH] = ACTIONS(313), + [anon_sym_PERCENT] = ACTIONS(313), + [anon_sym_PLUS_EQ] = ACTIONS(311), + [anon_sym_DASH_EQ] = ACTIONS(311), + [anon_sym_STAR_EQ] = ACTIONS(311), + [anon_sym_SLASH_EQ] = ACTIONS(311), + [anon_sym_PERCENT_EQ] = ACTIONS(311), + [anon_sym_AMP_EQ] = ACTIONS(311), + [anon_sym_PIPE_EQ] = ACTIONS(311), + [anon_sym_CARET_EQ] = ACTIONS(311), + [anon_sym_LT_LT_EQ] = ACTIONS(311), + [anon_sym_GT_GT_EQ] = ACTIONS(311), [anon_sym_move] = ACTIONS(343), - [anon_sym_DOT] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(313), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [26] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(794), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_PLUS] = ACTIONS(325), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(323), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_as] = ACTIONS(325), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(325), + [anon_sym_LT] = ACTIONS(315), + [anon_sym_GT] = ACTIONS(325), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(353), + [anon_sym_DOT_DOT_EQ] = ACTIONS(323), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_AMP_AMP] = ACTIONS(323), + [anon_sym_PIPE_PIPE] = ACTIONS(323), + [anon_sym_PIPE] = ACTIONS(321), + [anon_sym_CARET] = ACTIONS(325), + [anon_sym_EQ_EQ] = ACTIONS(323), + [anon_sym_BANG_EQ] = ACTIONS(323), + [anon_sym_LT_EQ] = ACTIONS(323), + [anon_sym_GT_EQ] = ACTIONS(323), + [anon_sym_LT_LT] = ACTIONS(325), + [anon_sym_GT_GT] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(325), + [anon_sym_PERCENT] = ACTIONS(325), + [anon_sym_PLUS_EQ] = ACTIONS(323), + [anon_sym_DASH_EQ] = ACTIONS(323), + [anon_sym_STAR_EQ] = ACTIONS(323), + [anon_sym_SLASH_EQ] = ACTIONS(323), + [anon_sym_PERCENT_EQ] = ACTIONS(323), + [anon_sym_AMP_EQ] = ACTIONS(323), + [anon_sym_PIPE_EQ] = ACTIONS(323), + [anon_sym_CARET_EQ] = ACTIONS(323), + [anon_sym_LT_LT_EQ] = ACTIONS(323), + [anon_sym_GT_GT_EQ] = ACTIONS(323), + [anon_sym_move] = ACTIONS(343), + [anon_sym_DOT] = ACTIONS(325), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), @@ -11899,57 +11902,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [27] = { - [sym_attribute_item] = STATE(36), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1081), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(36), + [sym_attribute_item] = STATE(29), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1075), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(29), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(355), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(355), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -12007,57 +12010,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [28] = { - [sym_attribute_item] = STATE(539), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1072), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(539), + [sym_attribute_item] = STATE(38), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1078), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(38), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(361), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(361), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -12115,52 +12118,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [29] = { - [sym_attribute_item] = STATE(28), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1077), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(28), + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1074), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(538), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -12223,162 +12226,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [30] = { - [sym_else_clause] = STATE(46), - [ts_builtin_sym_end] = ACTIONS(369), - [sym_identifier] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_macro_rules_BANG] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(371), - [anon_sym_i8] = ACTIONS(371), - [anon_sym_u16] = ACTIONS(371), - [anon_sym_i16] = ACTIONS(371), - [anon_sym_u32] = ACTIONS(371), - [anon_sym_i32] = ACTIONS(371), - [anon_sym_u64] = ACTIONS(371), - [anon_sym_i64] = ACTIONS(371), - [anon_sym_u128] = ACTIONS(371), - [anon_sym_i128] = ACTIONS(371), - [anon_sym_isize] = ACTIONS(371), - [anon_sym_usize] = ACTIONS(371), - [anon_sym_f32] = ACTIONS(371), - [anon_sym_f64] = ACTIONS(371), - [anon_sym_bool] = ACTIONS(371), - [anon_sym_str] = ACTIONS(371), - [anon_sym_char] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(371), - [anon_sym_break] = ACTIONS(371), - [anon_sym_const] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_default] = ACTIONS(371), - [anon_sym_enum] = ACTIONS(371), - [anon_sym_fn] = ACTIONS(371), - [anon_sym_for] = ACTIONS(371), - [anon_sym_if] = ACTIONS(371), - [anon_sym_impl] = ACTIONS(371), - [anon_sym_let] = ACTIONS(371), - [anon_sym_loop] = ACTIONS(371), - [anon_sym_match] = ACTIONS(371), - [anon_sym_mod] = ACTIONS(371), - [anon_sym_pub] = ACTIONS(371), - [anon_sym_return] = ACTIONS(371), - [anon_sym_static] = ACTIONS(371), - [anon_sym_struct] = ACTIONS(371), - [anon_sym_trait] = ACTIONS(371), - [anon_sym_type] = ACTIONS(371), - [anon_sym_union] = ACTIONS(371), - [anon_sym_unsafe] = ACTIONS(371), - [anon_sym_use] = ACTIONS(371), - [anon_sym_while] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(369), - [anon_sym_BANG] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(369), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_else] = ACTIONS(373), - [anon_sym_move] = ACTIONS(371), - [anon_sym_DOT] = ACTIONS(371), - [sym_integer_literal] = ACTIONS(369), - [aux_sym_string_literal_token1] = ACTIONS(369), - [sym_char_literal] = ACTIONS(369), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_crate] = ACTIONS(371), - [sym_metavariable] = ACTIONS(369), - [sym_raw_string_literal] = ACTIONS(369), - [sym_float_literal] = ACTIONS(369), - [sym_block_comment] = ACTIONS(3), - }, - [31] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1107), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -12436,8 +12332,115 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [31] = { + [sym_else_clause] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(371), + [sym_identifier] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(371), + [anon_sym_macro_rules_BANG] = ACTIONS(371), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u128] = ACTIONS(373), + [anon_sym_i128] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_str] = ACTIONS(373), + [anon_sym_char] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_as] = ACTIONS(373), + [anon_sym_async] = ACTIONS(373), + [anon_sym_break] = ACTIONS(373), + [anon_sym_const] = ACTIONS(373), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_default] = ACTIONS(373), + [anon_sym_enum] = ACTIONS(373), + [anon_sym_fn] = ACTIONS(373), + [anon_sym_for] = ACTIONS(373), + [anon_sym_if] = ACTIONS(373), + [anon_sym_impl] = ACTIONS(373), + [anon_sym_let] = ACTIONS(373), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(373), + [anon_sym_mod] = ACTIONS(373), + [anon_sym_pub] = ACTIONS(373), + [anon_sym_return] = ACTIONS(373), + [anon_sym_static] = ACTIONS(373), + [anon_sym_struct] = ACTIONS(373), + [anon_sym_trait] = ACTIONS(373), + [anon_sym_type] = ACTIONS(373), + [anon_sym_union] = ACTIONS(373), + [anon_sym_unsafe] = ACTIONS(373), + [anon_sym_use] = ACTIONS(373), + [anon_sym_while] = ACTIONS(373), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_BANG] = ACTIONS(373), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(371), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(371), + [anon_sym_DASH_EQ] = ACTIONS(371), + [anon_sym_STAR_EQ] = ACTIONS(371), + [anon_sym_SLASH_EQ] = ACTIONS(371), + [anon_sym_PERCENT_EQ] = ACTIONS(371), + [anon_sym_AMP_EQ] = ACTIONS(371), + [anon_sym_PIPE_EQ] = ACTIONS(371), + [anon_sym_CARET_EQ] = ACTIONS(371), + [anon_sym_LT_LT_EQ] = ACTIONS(371), + [anon_sym_GT_GT_EQ] = ACTIONS(371), + [anon_sym_else] = ACTIONS(375), + [anon_sym_move] = ACTIONS(373), + [anon_sym_DOT] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(371), + [aux_sym_string_literal_token1] = ACTIONS(371), + [sym_char_literal] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(373), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(371), + [sym_raw_string_literal] = ACTIONS(371), + [sym_float_literal] = ACTIONS(371), + [sym_block_comment] = ACTIONS(3), + }, [32] = { - [sym_else_clause] = STATE(52), + [sym_else_clause] = STATE(69), [ts_builtin_sym_end] = ACTIONS(377), [sym_identifier] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(377), @@ -12526,7 +12529,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(377), [anon_sym_LT_LT_EQ] = ACTIONS(377), [anon_sym_GT_GT_EQ] = ACTIONS(377), - [anon_sym_else] = ACTIONS(373), + [anon_sym_else] = ACTIONS(375), [anon_sym_move] = ACTIONS(379), [anon_sym_DOT] = ACTIONS(379), [sym_integer_literal] = ACTIONS(377), @@ -12544,52 +12547,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [33] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_attribute_item] = STATE(42), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1110), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(42), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(381), @@ -12651,52 +12654,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [34] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1107), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(383), @@ -12758,52 +12761,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [35] = { - [sym_attribute_item] = STATE(38), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1097), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(38), + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1107), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_RPAREN] = ACTIONS(385), @@ -12865,52 +12868,264 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [36] = { - [sym_attribute_item] = STATE(539), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1082), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(539), + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_macro_rules_BANG] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(389), + [anon_sym_i8] = ACTIONS(389), + [anon_sym_u16] = ACTIONS(389), + [anon_sym_i16] = ACTIONS(389), + [anon_sym_u32] = ACTIONS(389), + [anon_sym_i32] = ACTIONS(389), + [anon_sym_u64] = ACTIONS(389), + [anon_sym_i64] = ACTIONS(389), + [anon_sym_u128] = ACTIONS(389), + [anon_sym_i128] = ACTIONS(389), + [anon_sym_isize] = ACTIONS(389), + [anon_sym_usize] = ACTIONS(389), + [anon_sym_f32] = ACTIONS(389), + [anon_sym_f64] = ACTIONS(389), + [anon_sym_bool] = ACTIONS(389), + [anon_sym_str] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), + [anon_sym_async] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_const] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_default] = ACTIONS(389), + [anon_sym_enum] = ACTIONS(389), + [anon_sym_fn] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_impl] = ACTIONS(389), + [anon_sym_let] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_match] = ACTIONS(389), + [anon_sym_mod] = ACTIONS(389), + [anon_sym_pub] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_struct] = ACTIONS(389), + [anon_sym_trait] = ACTIONS(389), + [anon_sym_type] = ACTIONS(389), + [anon_sym_union] = ACTIONS(389), + [anon_sym_unsafe] = ACTIONS(389), + [anon_sym_use] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_else] = ACTIONS(389), + [anon_sym_move] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(389), + [sym_integer_literal] = ACTIONS(387), + [aux_sym_string_literal_token1] = ACTIONS(387), + [sym_char_literal] = ACTIONS(387), + [anon_sym_true] = ACTIONS(389), + [anon_sym_false] = ACTIONS(389), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(389), + [sym_super] = ACTIONS(389), + [sym_crate] = ACTIONS(389), + [sym_metavariable] = ACTIONS(387), + [sym_raw_string_literal] = ACTIONS(387), + [sym_float_literal] = ACTIONS(387), + [sym_block_comment] = ACTIONS(3), + }, + [37] = { + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_macro_rules_BANG] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(393), + [anon_sym_i8] = ACTIONS(393), + [anon_sym_u16] = ACTIONS(393), + [anon_sym_i16] = ACTIONS(393), + [anon_sym_u32] = ACTIONS(393), + [anon_sym_i32] = ACTIONS(393), + [anon_sym_u64] = ACTIONS(393), + [anon_sym_i64] = ACTIONS(393), + [anon_sym_u128] = ACTIONS(393), + [anon_sym_i128] = ACTIONS(393), + [anon_sym_isize] = ACTIONS(393), + [anon_sym_usize] = ACTIONS(393), + [anon_sym_f32] = ACTIONS(393), + [anon_sym_f64] = ACTIONS(393), + [anon_sym_bool] = ACTIONS(393), + [anon_sym_str] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_const] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_default] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(393), + [anon_sym_fn] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_impl] = ACTIONS(393), + [anon_sym_let] = ACTIONS(393), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_match] = ACTIONS(393), + [anon_sym_mod] = ACTIONS(393), + [anon_sym_pub] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_struct] = ACTIONS(393), + [anon_sym_trait] = ACTIONS(393), + [anon_sym_type] = ACTIONS(393), + [anon_sym_union] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(393), + [anon_sym_use] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_POUND] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_extern] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_COLON_COLON] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_else] = ACTIONS(393), + [anon_sym_move] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(393), + [sym_integer_literal] = ACTIONS(391), + [aux_sym_string_literal_token1] = ACTIONS(391), + [sym_char_literal] = ACTIONS(391), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(393), + [sym_super] = ACTIONS(393), + [sym_crate] = ACTIONS(393), + [sym_metavariable] = ACTIONS(391), + [sym_raw_string_literal] = ACTIONS(391), + [sym_float_literal] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + }, + [38] = { + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1084), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(538), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -12970,53 +13185,159 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [37] = { - [sym_attribute_item] = STATE(539), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1120), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(539), + [39] = { + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_macro_rules_BANG] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(397), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u128] = ACTIONS(397), + [anon_sym_i128] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_str] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_as] = ACTIONS(397), + [anon_sym_async] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(397), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_impl] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_mod] = ACTIONS(397), + [anon_sym_pub] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_trait] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_union] = ACTIONS(397), + [anon_sym_unsafe] = ACTIONS(397), + [anon_sym_use] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_extern] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_else] = ACTIONS(397), + [anon_sym_move] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(397), + [sym_integer_literal] = ACTIONS(395), + [aux_sym_string_literal_token1] = ACTIONS(395), + [sym_char_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_crate] = ACTIONS(397), + [sym_metavariable] = ACTIONS(395), + [sym_raw_string_literal] = ACTIONS(395), + [sym_float_literal] = ACTIONS(395), + [sym_block_comment] = ACTIONS(3), + }, + [40] = { + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1111), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(538), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -13076,53 +13397,53 @@ static 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(539), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1196), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(539), + [41] = { + [sym_attribute_item] = STATE(40), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1107), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(40), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -13182,371 +13503,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [39] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_else] = ACTIONS(389), - [anon_sym_move] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [40] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_else] = ACTIONS(393), - [anon_sym_move] = ACTIONS(393), - [anon_sym_DOT] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), - [sym_block_comment] = ACTIONS(3), - }, - [41] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(397), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(397), - [anon_sym_move] = ACTIONS(397), - [anon_sym_DOT] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), - [sym_block_comment] = ACTIONS(3), - }, [42] = { - [sym_attribute_item] = STATE(37), - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1094), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_enum_variant_list_repeat1] = STATE(37), + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1193), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_enum_variant_list_repeat1] = STATE(538), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -13817,1209 +13820,999 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [45] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1098), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_tuple_expression_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(407), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), + [ts_builtin_sym_end] = ACTIONS(407), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_macro_rules_BANG] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_default] = ACTIONS(409), + [anon_sym_enum] = ACTIONS(409), + [anon_sym_fn] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_impl] = ACTIONS(409), + [anon_sym_let] = ACTIONS(409), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_match] = ACTIONS(409), + [anon_sym_mod] = ACTIONS(409), + [anon_sym_pub] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_struct] = ACTIONS(409), + [anon_sym_trait] = ACTIONS(409), + [anon_sym_type] = ACTIONS(409), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(409), + [anon_sym_use] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [anon_sym_POUND] = ACTIONS(407), + [anon_sym_BANG] = ACTIONS(409), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_extern] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_COLON_COLON] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_move] = ACTIONS(409), + [anon_sym_DOT] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(407), + [aux_sym_string_literal_token1] = ACTIONS(407), + [sym_char_literal] = ACTIONS(407), + [anon_sym_true] = ACTIONS(409), + [anon_sym_false] = ACTIONS(409), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_self] = ACTIONS(409), + [sym_super] = ACTIONS(409), + [sym_crate] = ACTIONS(409), + [sym_metavariable] = ACTIONS(407), + [sym_raw_string_literal] = ACTIONS(407), + [sym_float_literal] = ACTIONS(407), [sym_block_comment] = ACTIONS(3), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(409), - [sym_identifier] = ACTIONS(411), - [anon_sym_SEMI] = ACTIONS(409), - [anon_sym_macro_rules_BANG] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_LBRACE] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_async] = ACTIONS(411), - [anon_sym_break] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(411), - [anon_sym_enum] = ACTIONS(411), - [anon_sym_fn] = ACTIONS(411), - [anon_sym_for] = ACTIONS(411), - [anon_sym_if] = ACTIONS(411), - [anon_sym_impl] = ACTIONS(411), - [anon_sym_let] = ACTIONS(411), - [anon_sym_loop] = ACTIONS(411), - [anon_sym_match] = ACTIONS(411), - [anon_sym_mod] = ACTIONS(411), - [anon_sym_pub] = ACTIONS(411), - [anon_sym_return] = ACTIONS(411), - [anon_sym_static] = ACTIONS(411), - [anon_sym_struct] = ACTIONS(411), - [anon_sym_trait] = ACTIONS(411), - [anon_sym_type] = ACTIONS(411), - [anon_sym_union] = ACTIONS(411), - [anon_sym_unsafe] = ACTIONS(411), - [anon_sym_use] = ACTIONS(411), - [anon_sym_while] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(411), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_extern] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_move] = ACTIONS(411), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), + [ts_builtin_sym_end] = ACTIONS(411), + [sym_identifier] = ACTIONS(413), + [anon_sym_SEMI] = ACTIONS(411), + [anon_sym_macro_rules_BANG] = ACTIONS(411), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(413), + [anon_sym_i8] = ACTIONS(413), + [anon_sym_u16] = ACTIONS(413), + [anon_sym_i16] = ACTIONS(413), + [anon_sym_u32] = ACTIONS(413), + [anon_sym_i32] = ACTIONS(413), + [anon_sym_u64] = ACTIONS(413), + [anon_sym_i64] = ACTIONS(413), + [anon_sym_u128] = ACTIONS(413), + [anon_sym_i128] = ACTIONS(413), + [anon_sym_isize] = ACTIONS(413), + [anon_sym_usize] = ACTIONS(413), + [anon_sym_f32] = ACTIONS(413), + [anon_sym_f64] = ACTIONS(413), + [anon_sym_bool] = ACTIONS(413), + [anon_sym_str] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_SQUOTE] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(413), + [anon_sym_break] = ACTIONS(413), + [anon_sym_const] = ACTIONS(413), + [anon_sym_continue] = ACTIONS(413), + [anon_sym_default] = ACTIONS(413), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_fn] = ACTIONS(413), + [anon_sym_for] = ACTIONS(413), + [anon_sym_if] = ACTIONS(413), + [anon_sym_impl] = ACTIONS(413), + [anon_sym_let] = ACTIONS(413), + [anon_sym_loop] = ACTIONS(413), + [anon_sym_match] = ACTIONS(413), + [anon_sym_mod] = ACTIONS(413), + [anon_sym_pub] = ACTIONS(413), + [anon_sym_return] = ACTIONS(413), + [anon_sym_static] = ACTIONS(413), + [anon_sym_struct] = ACTIONS(413), + [anon_sym_trait] = ACTIONS(413), + [anon_sym_type] = ACTIONS(413), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(413), + [anon_sym_use] = ACTIONS(413), + [anon_sym_while] = ACTIONS(413), + [anon_sym_POUND] = ACTIONS(411), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_extern] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_COLON_COLON] = ACTIONS(411), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_move] = ACTIONS(413), + [anon_sym_DOT] = ACTIONS(413), + [sym_integer_literal] = ACTIONS(411), + [aux_sym_string_literal_token1] = ACTIONS(411), + [sym_char_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), + [sym_self] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_crate] = ACTIONS(413), + [sym_metavariable] = ACTIONS(411), + [sym_raw_string_literal] = ACTIONS(411), + [sym_float_literal] = ACTIONS(411), [sym_block_comment] = ACTIONS(3), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(413), - [sym_identifier] = ACTIONS(415), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_macro_rules_BANG] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(413), - [anon_sym_u8] = ACTIONS(415), - [anon_sym_i8] = ACTIONS(415), - [anon_sym_u16] = ACTIONS(415), - [anon_sym_i16] = ACTIONS(415), - [anon_sym_u32] = ACTIONS(415), - [anon_sym_i32] = ACTIONS(415), - [anon_sym_u64] = ACTIONS(415), - [anon_sym_i64] = ACTIONS(415), - [anon_sym_u128] = ACTIONS(415), - [anon_sym_i128] = ACTIONS(415), - [anon_sym_isize] = ACTIONS(415), - [anon_sym_usize] = ACTIONS(415), - [anon_sym_f32] = ACTIONS(415), - [anon_sym_f64] = ACTIONS(415), - [anon_sym_bool] = ACTIONS(415), - [anon_sym_str] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(415), - [anon_sym_as] = ACTIONS(415), - [anon_sym_async] = ACTIONS(415), - [anon_sym_break] = ACTIONS(415), - [anon_sym_const] = ACTIONS(415), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_default] = ACTIONS(415), - [anon_sym_enum] = ACTIONS(415), - [anon_sym_fn] = ACTIONS(415), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(415), - [anon_sym_impl] = ACTIONS(415), - [anon_sym_let] = ACTIONS(415), - [anon_sym_loop] = ACTIONS(415), - [anon_sym_match] = ACTIONS(415), - [anon_sym_mod] = ACTIONS(415), - [anon_sym_pub] = ACTIONS(415), - [anon_sym_return] = ACTIONS(415), - [anon_sym_static] = ACTIONS(415), - [anon_sym_struct] = ACTIONS(415), - [anon_sym_trait] = ACTIONS(415), - [anon_sym_type] = ACTIONS(415), - [anon_sym_union] = ACTIONS(415), - [anon_sym_unsafe] = ACTIONS(415), - [anon_sym_use] = ACTIONS(415), - [anon_sym_while] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_extern] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(413), - [anon_sym_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_CARET] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_SLASH] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), - [anon_sym_STAR_EQ] = ACTIONS(413), - [anon_sym_SLASH_EQ] = ACTIONS(413), - [anon_sym_PERCENT_EQ] = ACTIONS(413), - [anon_sym_AMP_EQ] = ACTIONS(413), - [anon_sym_PIPE_EQ] = ACTIONS(413), - [anon_sym_CARET_EQ] = ACTIONS(413), - [anon_sym_LT_LT_EQ] = ACTIONS(413), - [anon_sym_GT_GT_EQ] = ACTIONS(413), - [anon_sym_move] = ACTIONS(415), - [anon_sym_DOT] = ACTIONS(415), - [sym_integer_literal] = ACTIONS(413), - [aux_sym_string_literal_token1] = ACTIONS(413), - [sym_char_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), + [ts_builtin_sym_end] = ACTIONS(415), + [sym_identifier] = ACTIONS(417), + [anon_sym_SEMI] = ACTIONS(415), + [anon_sym_macro_rules_BANG] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_continue] = ACTIONS(417), + [anon_sym_default] = ACTIONS(417), + [anon_sym_enum] = ACTIONS(417), + [anon_sym_fn] = ACTIONS(417), + [anon_sym_for] = ACTIONS(417), + [anon_sym_if] = ACTIONS(417), + [anon_sym_impl] = ACTIONS(417), + [anon_sym_let] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(417), + [anon_sym_match] = ACTIONS(417), + [anon_sym_mod] = ACTIONS(417), + [anon_sym_pub] = ACTIONS(417), + [anon_sym_return] = ACTIONS(417), + [anon_sym_static] = ACTIONS(417), + [anon_sym_struct] = ACTIONS(417), + [anon_sym_trait] = ACTIONS(417), + [anon_sym_type] = ACTIONS(417), + [anon_sym_union] = ACTIONS(417), + [anon_sym_unsafe] = ACTIONS(417), + [anon_sym_use] = ACTIONS(417), + [anon_sym_while] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_BANG] = ACTIONS(417), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_extern] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_move] = ACTIONS(417), + [anon_sym_DOT] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(415), - [sym_super] = ACTIONS(415), - [sym_crate] = ACTIONS(415), - [sym_metavariable] = ACTIONS(413), - [sym_raw_string_literal] = ACTIONS(413), - [sym_float_literal] = ACTIONS(413), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), [sym_block_comment] = ACTIONS(3), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(417), - [sym_identifier] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_macro_rules_BANG] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_SQUOTE] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_async] = ACTIONS(419), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_continue] = ACTIONS(419), - [anon_sym_default] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(419), - [anon_sym_fn] = ACTIONS(419), - [anon_sym_for] = ACTIONS(419), - [anon_sym_if] = ACTIONS(419), - [anon_sym_impl] = ACTIONS(419), - [anon_sym_let] = ACTIONS(419), - [anon_sym_loop] = ACTIONS(419), - [anon_sym_match] = ACTIONS(419), - [anon_sym_mod] = ACTIONS(419), - [anon_sym_pub] = ACTIONS(419), - [anon_sym_return] = ACTIONS(419), - [anon_sym_static] = ACTIONS(419), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_trait] = ACTIONS(419), - [anon_sym_type] = ACTIONS(419), - [anon_sym_union] = ACTIONS(419), - [anon_sym_unsafe] = ACTIONS(419), - [anon_sym_use] = ACTIONS(419), - [anon_sym_while] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_BANG] = ACTIONS(419), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_extern] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_move] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), + [ts_builtin_sym_end] = ACTIONS(419), + [sym_identifier] = ACTIONS(421), + [anon_sym_SEMI] = ACTIONS(419), + [anon_sym_macro_rules_BANG] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_SQUOTE] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_async] = ACTIONS(421), + [anon_sym_break] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(421), + [anon_sym_default] = ACTIONS(421), + [anon_sym_enum] = ACTIONS(421), + [anon_sym_fn] = ACTIONS(421), + [anon_sym_for] = ACTIONS(421), + [anon_sym_if] = ACTIONS(421), + [anon_sym_impl] = ACTIONS(421), + [anon_sym_let] = ACTIONS(421), + [anon_sym_loop] = ACTIONS(421), + [anon_sym_match] = ACTIONS(421), + [anon_sym_mod] = ACTIONS(421), + [anon_sym_pub] = ACTIONS(421), + [anon_sym_return] = ACTIONS(421), + [anon_sym_static] = ACTIONS(421), + [anon_sym_struct] = ACTIONS(421), + [anon_sym_trait] = ACTIONS(421), + [anon_sym_type] = ACTIONS(421), + [anon_sym_union] = ACTIONS(421), + [anon_sym_unsafe] = ACTIONS(421), + [anon_sym_use] = ACTIONS(421), + [anon_sym_while] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_BANG] = ACTIONS(421), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_extern] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_move] = ACTIONS(421), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), [sym_block_comment] = ACTIONS(3), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(421), - [sym_identifier] = ACTIONS(423), - [anon_sym_SEMI] = ACTIONS(421), - [anon_sym_macro_rules_BANG] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_PLUS] = ACTIONS(423), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_QMARK] = ACTIONS(421), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u128] = ACTIONS(423), - [anon_sym_i128] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_str] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(423), - [anon_sym_as] = ACTIONS(423), - [anon_sym_async] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_const] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_fn] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_impl] = ACTIONS(423), - [anon_sym_let] = ACTIONS(423), - [anon_sym_loop] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_mod] = ACTIONS(423), - [anon_sym_pub] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_trait] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_union] = ACTIONS(423), - [anon_sym_unsafe] = ACTIONS(423), - [anon_sym_use] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [anon_sym_POUND] = ACTIONS(421), - [anon_sym_BANG] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(423), - [anon_sym_extern] = ACTIONS(423), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_COLON_COLON] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(423), - [anon_sym_DOT_DOT_EQ] = ACTIONS(421), - [anon_sym_DASH] = ACTIONS(423), - [anon_sym_AMP_AMP] = ACTIONS(421), - [anon_sym_PIPE_PIPE] = ACTIONS(421), - [anon_sym_PIPE] = ACTIONS(423), - [anon_sym_CARET] = ACTIONS(423), - [anon_sym_EQ_EQ] = ACTIONS(421), - [anon_sym_BANG_EQ] = ACTIONS(421), - [anon_sym_LT_EQ] = ACTIONS(421), - [anon_sym_GT_EQ] = ACTIONS(421), - [anon_sym_LT_LT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(423), - [anon_sym_SLASH] = ACTIONS(423), - [anon_sym_PERCENT] = ACTIONS(423), - [anon_sym_PLUS_EQ] = ACTIONS(421), - [anon_sym_DASH_EQ] = ACTIONS(421), - [anon_sym_STAR_EQ] = ACTIONS(421), - [anon_sym_SLASH_EQ] = ACTIONS(421), - [anon_sym_PERCENT_EQ] = ACTIONS(421), - [anon_sym_AMP_EQ] = ACTIONS(421), - [anon_sym_PIPE_EQ] = ACTIONS(421), - [anon_sym_CARET_EQ] = ACTIONS(421), - [anon_sym_LT_LT_EQ] = ACTIONS(421), - [anon_sym_GT_GT_EQ] = ACTIONS(421), - [anon_sym_move] = ACTIONS(423), - [anon_sym_DOT] = ACTIONS(423), - [sym_integer_literal] = ACTIONS(421), - [aux_sym_string_literal_token1] = ACTIONS(421), - [sym_char_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), + [ts_builtin_sym_end] = ACTIONS(423), + [sym_identifier] = ACTIONS(425), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_macro_rules_BANG] = ACTIONS(423), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(423), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u128] = ACTIONS(425), + [anon_sym_i128] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_str] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_async] = ACTIONS(425), + [anon_sym_break] = ACTIONS(425), + [anon_sym_const] = ACTIONS(425), + [anon_sym_continue] = ACTIONS(425), + [anon_sym_default] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(425), + [anon_sym_fn] = ACTIONS(425), + [anon_sym_for] = ACTIONS(425), + [anon_sym_if] = ACTIONS(425), + [anon_sym_impl] = ACTIONS(425), + [anon_sym_let] = ACTIONS(425), + [anon_sym_loop] = ACTIONS(425), + [anon_sym_match] = ACTIONS(425), + [anon_sym_mod] = ACTIONS(425), + [anon_sym_pub] = ACTIONS(425), + [anon_sym_return] = ACTIONS(425), + [anon_sym_static] = ACTIONS(425), + [anon_sym_struct] = ACTIONS(425), + [anon_sym_trait] = ACTIONS(425), + [anon_sym_type] = ACTIONS(425), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(425), + [anon_sym_use] = ACTIONS(425), + [anon_sym_while] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_EQ] = ACTIONS(425), + [anon_sym_extern] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PERCENT] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(423), + [anon_sym_DASH_EQ] = ACTIONS(423), + [anon_sym_STAR_EQ] = ACTIONS(423), + [anon_sym_SLASH_EQ] = ACTIONS(423), + [anon_sym_PERCENT_EQ] = ACTIONS(423), + [anon_sym_AMP_EQ] = ACTIONS(423), + [anon_sym_PIPE_EQ] = ACTIONS(423), + [anon_sym_CARET_EQ] = ACTIONS(423), + [anon_sym_LT_LT_EQ] = ACTIONS(423), + [anon_sym_GT_GT_EQ] = ACTIONS(423), + [anon_sym_move] = ACTIONS(425), + [anon_sym_DOT] = ACTIONS(425), + [sym_integer_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(423), + [sym_char_literal] = ACTIONS(423), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(423), - [sym_super] = ACTIONS(423), - [sym_crate] = ACTIONS(423), - [sym_metavariable] = ACTIONS(421), - [sym_raw_string_literal] = ACTIONS(421), - [sym_float_literal] = ACTIONS(421), + [sym_self] = ACTIONS(425), + [sym_super] = ACTIONS(425), + [sym_crate] = ACTIONS(425), + [sym_metavariable] = ACTIONS(423), + [sym_raw_string_literal] = ACTIONS(423), + [sym_float_literal] = ACTIONS(423), [sym_block_comment] = ACTIONS(3), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(425), - [sym_identifier] = ACTIONS(427), - [anon_sym_SEMI] = ACTIONS(425), - [anon_sym_macro_rules_BANG] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_LBRACE] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(425), - [anon_sym_u8] = ACTIONS(427), - [anon_sym_i8] = ACTIONS(427), - [anon_sym_u16] = ACTIONS(427), - [anon_sym_i16] = ACTIONS(427), - [anon_sym_u32] = ACTIONS(427), - [anon_sym_i32] = ACTIONS(427), - [anon_sym_u64] = ACTIONS(427), - [anon_sym_i64] = ACTIONS(427), - [anon_sym_u128] = ACTIONS(427), - [anon_sym_i128] = ACTIONS(427), - [anon_sym_isize] = ACTIONS(427), - [anon_sym_usize] = ACTIONS(427), - [anon_sym_f32] = ACTIONS(427), - [anon_sym_f64] = ACTIONS(427), - [anon_sym_bool] = ACTIONS(427), - [anon_sym_str] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_SQUOTE] = ACTIONS(427), - [anon_sym_as] = ACTIONS(427), - [anon_sym_async] = ACTIONS(427), - [anon_sym_break] = ACTIONS(427), - [anon_sym_const] = ACTIONS(427), - [anon_sym_continue] = ACTIONS(427), - [anon_sym_default] = ACTIONS(427), - [anon_sym_enum] = ACTIONS(427), - [anon_sym_fn] = ACTIONS(427), - [anon_sym_for] = ACTIONS(427), - [anon_sym_if] = ACTIONS(427), - [anon_sym_impl] = ACTIONS(427), - [anon_sym_let] = ACTIONS(427), - [anon_sym_loop] = ACTIONS(427), - [anon_sym_match] = ACTIONS(427), - [anon_sym_mod] = ACTIONS(427), - [anon_sym_pub] = ACTIONS(427), - [anon_sym_return] = ACTIONS(427), - [anon_sym_static] = ACTIONS(427), - [anon_sym_struct] = ACTIONS(427), - [anon_sym_trait] = ACTIONS(427), - [anon_sym_type] = ACTIONS(427), - [anon_sym_union] = ACTIONS(427), - [anon_sym_unsafe] = ACTIONS(427), - [anon_sym_use] = ACTIONS(427), - [anon_sym_while] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_BANG] = ACTIONS(427), - [anon_sym_EQ] = ACTIONS(427), - [anon_sym_extern] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_COLON_COLON] = ACTIONS(425), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(425), - [anon_sym_PIPE_PIPE] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_EQ_EQ] = ACTIONS(425), - [anon_sym_BANG_EQ] = ACTIONS(425), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_EQ] = ACTIONS(425), - [anon_sym_DASH_EQ] = ACTIONS(425), - [anon_sym_STAR_EQ] = ACTIONS(425), - [anon_sym_SLASH_EQ] = ACTIONS(425), - [anon_sym_PERCENT_EQ] = ACTIONS(425), - [anon_sym_AMP_EQ] = ACTIONS(425), - [anon_sym_PIPE_EQ] = ACTIONS(425), - [anon_sym_CARET_EQ] = ACTIONS(425), - [anon_sym_LT_LT_EQ] = ACTIONS(425), - [anon_sym_GT_GT_EQ] = ACTIONS(425), - [anon_sym_move] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(425), - [aux_sym_string_literal_token1] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [anon_sym_true] = ACTIONS(427), - [anon_sym_false] = ACTIONS(427), + [ts_builtin_sym_end] = ACTIONS(427), + [sym_identifier] = ACTIONS(429), + [anon_sym_SEMI] = ACTIONS(427), + [anon_sym_macro_rules_BANG] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_SQUOTE] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_async] = ACTIONS(429), + [anon_sym_break] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_continue] = ACTIONS(429), + [anon_sym_default] = ACTIONS(429), + [anon_sym_enum] = ACTIONS(429), + [anon_sym_fn] = ACTIONS(429), + [anon_sym_for] = ACTIONS(429), + [anon_sym_if] = ACTIONS(429), + [anon_sym_impl] = ACTIONS(429), + [anon_sym_let] = ACTIONS(429), + [anon_sym_loop] = ACTIONS(429), + [anon_sym_match] = ACTIONS(429), + [anon_sym_mod] = ACTIONS(429), + [anon_sym_pub] = ACTIONS(429), + [anon_sym_return] = ACTIONS(429), + [anon_sym_static] = ACTIONS(429), + [anon_sym_struct] = ACTIONS(429), + [anon_sym_trait] = ACTIONS(429), + [anon_sym_type] = ACTIONS(429), + [anon_sym_union] = ACTIONS(429), + [anon_sym_unsafe] = ACTIONS(429), + [anon_sym_use] = ACTIONS(429), + [anon_sym_while] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(429), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_extern] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_move] = ACTIONS(429), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(427), - [sym_super] = ACTIONS(427), - [sym_crate] = ACTIONS(427), - [sym_metavariable] = ACTIONS(425), - [sym_raw_string_literal] = ACTIONS(425), - [sym_float_literal] = ACTIONS(425), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), [sym_block_comment] = ACTIONS(3), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(429), - [sym_identifier] = ACTIONS(431), - [anon_sym_SEMI] = ACTIONS(429), - [anon_sym_macro_rules_BANG] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(429), - [anon_sym_u8] = ACTIONS(431), - [anon_sym_i8] = ACTIONS(431), - [anon_sym_u16] = ACTIONS(431), - [anon_sym_i16] = ACTIONS(431), - [anon_sym_u32] = ACTIONS(431), - [anon_sym_i32] = ACTIONS(431), - [anon_sym_u64] = ACTIONS(431), - [anon_sym_i64] = ACTIONS(431), - [anon_sym_u128] = ACTIONS(431), - [anon_sym_i128] = ACTIONS(431), - [anon_sym_isize] = ACTIONS(431), - [anon_sym_usize] = ACTIONS(431), - [anon_sym_f32] = ACTIONS(431), - [anon_sym_f64] = ACTIONS(431), - [anon_sym_bool] = ACTIONS(431), - [anon_sym_str] = ACTIONS(431), - [anon_sym_char] = ACTIONS(431), - [anon_sym_SQUOTE] = ACTIONS(431), - [anon_sym_as] = ACTIONS(431), - [anon_sym_async] = ACTIONS(431), - [anon_sym_break] = ACTIONS(431), - [anon_sym_const] = ACTIONS(431), - [anon_sym_continue] = ACTIONS(431), - [anon_sym_default] = ACTIONS(431), - [anon_sym_enum] = ACTIONS(431), - [anon_sym_fn] = ACTIONS(431), - [anon_sym_for] = ACTIONS(431), - [anon_sym_if] = ACTIONS(431), - [anon_sym_impl] = ACTIONS(431), - [anon_sym_let] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(431), - [anon_sym_match] = ACTIONS(431), - [anon_sym_mod] = ACTIONS(431), - [anon_sym_pub] = ACTIONS(431), - [anon_sym_return] = ACTIONS(431), - [anon_sym_static] = ACTIONS(431), - [anon_sym_struct] = ACTIONS(431), - [anon_sym_trait] = ACTIONS(431), - [anon_sym_type] = ACTIONS(431), - [anon_sym_union] = ACTIONS(431), - [anon_sym_unsafe] = ACTIONS(431), - [anon_sym_use] = ACTIONS(431), - [anon_sym_while] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_BANG] = ACTIONS(431), - [anon_sym_EQ] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_COLON_COLON] = ACTIONS(429), - [anon_sym_AMP] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(429), - [anon_sym_DOT_DOT] = ACTIONS(431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_SLASH] = ACTIONS(431), - [anon_sym_PERCENT] = ACTIONS(431), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_AMP_EQ] = ACTIONS(429), - [anon_sym_PIPE_EQ] = ACTIONS(429), - [anon_sym_CARET_EQ] = ACTIONS(429), - [anon_sym_LT_LT_EQ] = ACTIONS(429), - [anon_sym_GT_GT_EQ] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_DOT] = ACTIONS(431), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(429), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), + [ts_builtin_sym_end] = ACTIONS(431), + [sym_identifier] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(431), + [anon_sym_macro_rules_BANG] = ACTIONS(431), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_LBRACE] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_SQUOTE] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_async] = ACTIONS(433), + [anon_sym_break] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(433), + [anon_sym_default] = ACTIONS(433), + [anon_sym_enum] = ACTIONS(433), + [anon_sym_fn] = ACTIONS(433), + [anon_sym_for] = ACTIONS(433), + [anon_sym_if] = ACTIONS(433), + [anon_sym_impl] = ACTIONS(433), + [anon_sym_let] = ACTIONS(433), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(433), + [anon_sym_mod] = ACTIONS(433), + [anon_sym_pub] = ACTIONS(433), + [anon_sym_return] = ACTIONS(433), + [anon_sym_static] = ACTIONS(433), + [anon_sym_struct] = ACTIONS(433), + [anon_sym_trait] = ACTIONS(433), + [anon_sym_type] = ACTIONS(433), + [anon_sym_union] = ACTIONS(433), + [anon_sym_unsafe] = ACTIONS(433), + [anon_sym_use] = ACTIONS(433), + [anon_sym_while] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(433), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_extern] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(431), - [sym_super] = ACTIONS(431), - [sym_crate] = ACTIONS(431), - [sym_metavariable] = ACTIONS(429), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), [sym_block_comment] = ACTIONS(3), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(433), - [sym_identifier] = ACTIONS(435), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_macro_rules_BANG] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_QMARK] = ACTIONS(433), - [anon_sym_u8] = ACTIONS(435), - [anon_sym_i8] = ACTIONS(435), - [anon_sym_u16] = ACTIONS(435), - [anon_sym_i16] = ACTIONS(435), - [anon_sym_u32] = ACTIONS(435), - [anon_sym_i32] = ACTIONS(435), - [anon_sym_u64] = ACTIONS(435), - [anon_sym_i64] = ACTIONS(435), - [anon_sym_u128] = ACTIONS(435), - [anon_sym_i128] = ACTIONS(435), - [anon_sym_isize] = ACTIONS(435), - [anon_sym_usize] = ACTIONS(435), - [anon_sym_f32] = ACTIONS(435), - [anon_sym_f64] = ACTIONS(435), - [anon_sym_bool] = ACTIONS(435), - [anon_sym_str] = ACTIONS(435), - [anon_sym_char] = ACTIONS(435), - [anon_sym_SQUOTE] = ACTIONS(435), - [anon_sym_as] = ACTIONS(435), - [anon_sym_async] = ACTIONS(435), - [anon_sym_break] = ACTIONS(435), - [anon_sym_const] = ACTIONS(435), - [anon_sym_continue] = ACTIONS(435), - [anon_sym_default] = ACTIONS(435), - [anon_sym_enum] = ACTIONS(435), - [anon_sym_fn] = ACTIONS(435), - [anon_sym_for] = ACTIONS(435), - [anon_sym_if] = ACTIONS(435), - [anon_sym_impl] = ACTIONS(435), - [anon_sym_let] = ACTIONS(435), - [anon_sym_loop] = ACTIONS(435), - [anon_sym_match] = ACTIONS(435), - [anon_sym_mod] = ACTIONS(435), - [anon_sym_pub] = ACTIONS(435), - [anon_sym_return] = ACTIONS(435), - [anon_sym_static] = ACTIONS(435), - [anon_sym_struct] = ACTIONS(435), - [anon_sym_trait] = ACTIONS(435), - [anon_sym_type] = ACTIONS(435), - [anon_sym_union] = ACTIONS(435), - [anon_sym_unsafe] = ACTIONS(435), - [anon_sym_use] = ACTIONS(435), - [anon_sym_while] = ACTIONS(435), - [anon_sym_POUND] = ACTIONS(433), - [anon_sym_BANG] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(435), - [anon_sym_extern] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(435), - [anon_sym_COLON_COLON] = ACTIONS(433), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(433), - [anon_sym_DOT_DOT] = ACTIONS(435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_AMP_AMP] = ACTIONS(433), - [anon_sym_PIPE_PIPE] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_EQ_EQ] = ACTIONS(433), - [anon_sym_BANG_EQ] = ACTIONS(433), - [anon_sym_LT_EQ] = ACTIONS(433), - [anon_sym_GT_EQ] = ACTIONS(433), - [anon_sym_LT_LT] = ACTIONS(435), - [anon_sym_GT_GT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(435), - [anon_sym_PLUS_EQ] = ACTIONS(433), - [anon_sym_DASH_EQ] = ACTIONS(433), - [anon_sym_STAR_EQ] = ACTIONS(433), - [anon_sym_SLASH_EQ] = ACTIONS(433), - [anon_sym_PERCENT_EQ] = ACTIONS(433), - [anon_sym_AMP_EQ] = ACTIONS(433), - [anon_sym_PIPE_EQ] = ACTIONS(433), - [anon_sym_CARET_EQ] = ACTIONS(433), - [anon_sym_LT_LT_EQ] = ACTIONS(433), - [anon_sym_GT_GT_EQ] = ACTIONS(433), - [anon_sym_move] = ACTIONS(435), - [anon_sym_DOT] = ACTIONS(435), - [sym_integer_literal] = ACTIONS(433), - [aux_sym_string_literal_token1] = ACTIONS(433), - [sym_char_literal] = ACTIONS(433), - [anon_sym_true] = ACTIONS(435), - [anon_sym_false] = ACTIONS(435), + [ts_builtin_sym_end] = ACTIONS(435), + [sym_identifier] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(435), + [anon_sym_macro_rules_BANG] = ACTIONS(435), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_LBRACE] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_async] = ACTIONS(437), + [anon_sym_break] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_continue] = ACTIONS(437), + [anon_sym_default] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(437), + [anon_sym_fn] = ACTIONS(437), + [anon_sym_for] = ACTIONS(437), + [anon_sym_if] = ACTIONS(437), + [anon_sym_impl] = ACTIONS(437), + [anon_sym_let] = ACTIONS(437), + [anon_sym_loop] = ACTIONS(437), + [anon_sym_match] = ACTIONS(437), + [anon_sym_mod] = ACTIONS(437), + [anon_sym_pub] = ACTIONS(437), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(437), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_trait] = ACTIONS(437), + [anon_sym_type] = ACTIONS(437), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(437), + [anon_sym_use] = ACTIONS(437), + [anon_sym_while] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_BANG] = ACTIONS(437), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_extern] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_move] = ACTIONS(437), + [anon_sym_DOT] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(435), - [sym_crate] = ACTIONS(435), - [sym_metavariable] = ACTIONS(433), - [sym_raw_string_literal] = ACTIONS(433), - [sym_float_literal] = ACTIONS(433), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(437), + [sym_crate] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), [sym_block_comment] = ACTIONS(3), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_macro_rules_BANG] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_u8] = ACTIONS(439), - [anon_sym_i8] = ACTIONS(439), - [anon_sym_u16] = ACTIONS(439), - [anon_sym_i16] = ACTIONS(439), - [anon_sym_u32] = ACTIONS(439), - [anon_sym_i32] = ACTIONS(439), - [anon_sym_u64] = ACTIONS(439), - [anon_sym_i64] = ACTIONS(439), - [anon_sym_u128] = ACTIONS(439), - [anon_sym_i128] = ACTIONS(439), - [anon_sym_isize] = ACTIONS(439), - [anon_sym_usize] = ACTIONS(439), - [anon_sym_f32] = ACTIONS(439), - [anon_sym_f64] = ACTIONS(439), - [anon_sym_bool] = ACTIONS(439), - [anon_sym_str] = ACTIONS(439), - [anon_sym_char] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(439), - [anon_sym_as] = ACTIONS(439), - [anon_sym_async] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_const] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_default] = ACTIONS(439), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_fn] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_impl] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_loop] = ACTIONS(439), - [anon_sym_match] = ACTIONS(439), - [anon_sym_mod] = ACTIONS(439), - [anon_sym_pub] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_static] = ACTIONS(439), - [anon_sym_struct] = ACTIONS(439), - [anon_sym_trait] = ACTIONS(439), - [anon_sym_type] = ACTIONS(439), - [anon_sym_union] = ACTIONS(439), - [anon_sym_unsafe] = ACTIONS(439), - [anon_sym_use] = ACTIONS(439), - [anon_sym_while] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_extern] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_COLON_COLON] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(437), - [anon_sym_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(437), - [anon_sym_PIPE_PIPE] = ACTIONS(437), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(437), - [anon_sym_BANG_EQ] = ACTIONS(437), - [anon_sym_LT_EQ] = ACTIONS(437), - [anon_sym_GT_EQ] = ACTIONS(437), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(437), - [anon_sym_DASH_EQ] = ACTIONS(437), - [anon_sym_STAR_EQ] = ACTIONS(437), - [anon_sym_SLASH_EQ] = ACTIONS(437), - [anon_sym_PERCENT_EQ] = ACTIONS(437), - [anon_sym_AMP_EQ] = ACTIONS(437), - [anon_sym_PIPE_EQ] = ACTIONS(437), - [anon_sym_CARET_EQ] = ACTIONS(437), - [anon_sym_LT_LT_EQ] = ACTIONS(437), - [anon_sym_GT_GT_EQ] = ACTIONS(437), - [anon_sym_move] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [sym_integer_literal] = ACTIONS(437), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(437), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), + [ts_builtin_sym_end] = ACTIONS(439), + [sym_identifier] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(439), + [anon_sym_macro_rules_BANG] = ACTIONS(439), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_LBRACE] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_SQUOTE] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_async] = ACTIONS(441), + [anon_sym_break] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(441), + [anon_sym_default] = ACTIONS(441), + [anon_sym_enum] = ACTIONS(441), + [anon_sym_fn] = ACTIONS(441), + [anon_sym_for] = ACTIONS(441), + [anon_sym_if] = ACTIONS(441), + [anon_sym_impl] = ACTIONS(441), + [anon_sym_let] = ACTIONS(441), + [anon_sym_loop] = ACTIONS(441), + [anon_sym_match] = ACTIONS(441), + [anon_sym_mod] = ACTIONS(441), + [anon_sym_pub] = ACTIONS(441), + [anon_sym_return] = ACTIONS(441), + [anon_sym_static] = ACTIONS(441), + [anon_sym_struct] = ACTIONS(441), + [anon_sym_trait] = ACTIONS(441), + [anon_sym_type] = ACTIONS(441), + [anon_sym_union] = ACTIONS(441), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_use] = ACTIONS(441), + [anon_sym_while] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_BANG] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_extern] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_move] = ACTIONS(441), + [anon_sym_DOT] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(439), - [sym_super] = ACTIONS(439), - [sym_crate] = ACTIONS(439), - [sym_metavariable] = ACTIONS(437), - [sym_raw_string_literal] = ACTIONS(437), - [sym_float_literal] = ACTIONS(437), + [sym_self] = ACTIONS(441), + [sym_super] = ACTIONS(441), + [sym_crate] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), [sym_block_comment] = ACTIONS(3), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(441), - [sym_identifier] = ACTIONS(443), - [anon_sym_SEMI] = ACTIONS(441), - [anon_sym_macro_rules_BANG] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_QMARK] = ACTIONS(441), - [anon_sym_u8] = ACTIONS(443), - [anon_sym_i8] = ACTIONS(443), - [anon_sym_u16] = ACTIONS(443), - [anon_sym_i16] = ACTIONS(443), - [anon_sym_u32] = ACTIONS(443), - [anon_sym_i32] = ACTIONS(443), - [anon_sym_u64] = ACTIONS(443), - [anon_sym_i64] = ACTIONS(443), - [anon_sym_u128] = ACTIONS(443), - [anon_sym_i128] = ACTIONS(443), - [anon_sym_isize] = ACTIONS(443), - [anon_sym_usize] = ACTIONS(443), - [anon_sym_f32] = ACTIONS(443), - [anon_sym_f64] = ACTIONS(443), - [anon_sym_bool] = ACTIONS(443), - [anon_sym_str] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_SQUOTE] = ACTIONS(443), - [anon_sym_as] = ACTIONS(443), - [anon_sym_async] = ACTIONS(443), - [anon_sym_break] = ACTIONS(443), - [anon_sym_const] = ACTIONS(443), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_default] = ACTIONS(443), - [anon_sym_enum] = ACTIONS(443), - [anon_sym_fn] = ACTIONS(443), - [anon_sym_for] = ACTIONS(443), - [anon_sym_if] = ACTIONS(443), - [anon_sym_impl] = ACTIONS(443), - [anon_sym_let] = ACTIONS(443), - [anon_sym_loop] = ACTIONS(443), - [anon_sym_match] = ACTIONS(443), - [anon_sym_mod] = ACTIONS(443), - [anon_sym_pub] = ACTIONS(443), - [anon_sym_return] = ACTIONS(443), - [anon_sym_static] = ACTIONS(443), - [anon_sym_struct] = ACTIONS(443), - [anon_sym_trait] = ACTIONS(443), - [anon_sym_type] = ACTIONS(443), - [anon_sym_union] = ACTIONS(443), - [anon_sym_unsafe] = ACTIONS(443), - [anon_sym_use] = ACTIONS(443), - [anon_sym_while] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(443), - [anon_sym_EQ] = ACTIONS(443), - [anon_sym_extern] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(443), - [anon_sym_GT] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(441), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(441), - [anon_sym_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT_EQ] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(443), - [anon_sym_GT_GT] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_PLUS_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), - [anon_sym_STAR_EQ] = ACTIONS(441), - [anon_sym_SLASH_EQ] = ACTIONS(441), - [anon_sym_PERCENT_EQ] = ACTIONS(441), - [anon_sym_AMP_EQ] = ACTIONS(441), - [anon_sym_PIPE_EQ] = ACTIONS(441), - [anon_sym_CARET_EQ] = ACTIONS(441), - [anon_sym_LT_LT_EQ] = ACTIONS(441), - [anon_sym_GT_GT_EQ] = ACTIONS(441), - [anon_sym_move] = ACTIONS(443), - [anon_sym_DOT] = ACTIONS(443), - [sym_integer_literal] = ACTIONS(441), - [aux_sym_string_literal_token1] = ACTIONS(441), - [sym_char_literal] = ACTIONS(441), - [anon_sym_true] = ACTIONS(443), - [anon_sym_false] = ACTIONS(443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(443), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(441), - [sym_raw_string_literal] = ACTIONS(441), - [sym_float_literal] = ACTIONS(441), - [sym_block_comment] = ACTIONS(3), - }, - [55] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1178), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_tuple_expression_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(448), - [anon_sym_RPAREN] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(456), - [anon_sym_STAR] = ACTIONS(459), - [anon_sym_u8] = ACTIONS(462), - [anon_sym_i8] = ACTIONS(462), - [anon_sym_u16] = ACTIONS(462), - [anon_sym_i16] = ACTIONS(462), - [anon_sym_u32] = ACTIONS(462), - [anon_sym_i32] = ACTIONS(462), - [anon_sym_u64] = ACTIONS(462), - [anon_sym_i64] = ACTIONS(462), - [anon_sym_u128] = ACTIONS(462), - [anon_sym_i128] = ACTIONS(462), - [anon_sym_isize] = ACTIONS(462), - [anon_sym_usize] = ACTIONS(462), - [anon_sym_f32] = ACTIONS(462), - [anon_sym_f64] = ACTIONS(462), - [anon_sym_bool] = ACTIONS(462), - [anon_sym_str] = ACTIONS(462), - [anon_sym_char] = ACTIONS(462), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_async] = ACTIONS(468), - [anon_sym_break] = ACTIONS(471), - [anon_sym_const] = ACTIONS(474), - [anon_sym_continue] = ACTIONS(477), - [anon_sym_default] = ACTIONS(480), - [anon_sym_for] = ACTIONS(483), - [anon_sym_if] = ACTIONS(486), - [anon_sym_loop] = ACTIONS(489), - [anon_sym_match] = ACTIONS(492), - [anon_sym_return] = ACTIONS(495), - [anon_sym_union] = ACTIONS(480), - [anon_sym_unsafe] = ACTIONS(498), - [anon_sym_while] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_PIPE] = ACTIONS(516), - [anon_sym_move] = ACTIONS(519), - [sym_integer_literal] = ACTIONS(522), - [aux_sym_string_literal_token1] = ACTIONS(525), - [sym_char_literal] = ACTIONS(522), - [anon_sym_true] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(531), - [sym_super] = ACTIONS(534), - [sym_crate] = ACTIONS(534), - [sym_metavariable] = ACTIONS(537), - [sym_raw_string_literal] = ACTIONS(522), - [sym_float_literal] = ACTIONS(522), - [sym_block_comment] = ACTIONS(3), - }, - [56] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_tuple_expression_repeat1] = STATE(55), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1117), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_tuple_expression_repeat1] = STATE(59), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -15076,265 +14869,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [57] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_as] = ACTIONS(548), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_move] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(550), - [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(550), - [anon_sym_macro_rules_BANG] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(550), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_SQUOTE] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_async] = ACTIONS(552), - [anon_sym_break] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_continue] = ACTIONS(552), - [anon_sym_default] = ACTIONS(552), - [anon_sym_enum] = ACTIONS(552), - [anon_sym_fn] = ACTIONS(552), - [anon_sym_for] = ACTIONS(552), - [anon_sym_if] = ACTIONS(552), - [anon_sym_impl] = ACTIONS(552), - [anon_sym_let] = ACTIONS(552), - [anon_sym_loop] = ACTIONS(552), - [anon_sym_match] = ACTIONS(552), - [anon_sym_mod] = ACTIONS(552), - [anon_sym_pub] = ACTIONS(552), - [anon_sym_return] = ACTIONS(552), - [anon_sym_static] = ACTIONS(552), - [anon_sym_struct] = ACTIONS(552), - [anon_sym_trait] = ACTIONS(552), - [anon_sym_type] = ACTIONS(552), - [anon_sym_union] = ACTIONS(552), - [anon_sym_unsafe] = ACTIONS(552), - [anon_sym_use] = ACTIONS(552), - [anon_sym_while] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_extern] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym_AMP] = ACTIONS(552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(550), - [anon_sym_DOT_DOT] = ACTIONS(552), - [anon_sym_DOT_DOT_EQ] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(552), - [anon_sym_CARET] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_LT_LT] = ACTIONS(552), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_PLUS_EQ] = ACTIONS(550), - [anon_sym_DASH_EQ] = ACTIONS(550), - [anon_sym_STAR_EQ] = ACTIONS(550), - [anon_sym_SLASH_EQ] = ACTIONS(550), - [anon_sym_PERCENT_EQ] = ACTIONS(550), - [anon_sym_AMP_EQ] = ACTIONS(550), - [anon_sym_PIPE_EQ] = ACTIONS(550), - [anon_sym_CARET_EQ] = ACTIONS(550), - [anon_sym_LT_LT_EQ] = ACTIONS(550), - [anon_sym_GT_GT_EQ] = ACTIONS(550), - [anon_sym_move] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), + [55] = { + [ts_builtin_sym_end] = ACTIONS(445), + [sym_identifier] = ACTIONS(447), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_macro_rules_BANG] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_LBRACE] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_SQUOTE] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_async] = ACTIONS(447), + [anon_sym_break] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_continue] = ACTIONS(447), + [anon_sym_default] = ACTIONS(447), + [anon_sym_enum] = ACTIONS(447), + [anon_sym_fn] = ACTIONS(447), + [anon_sym_for] = ACTIONS(447), + [anon_sym_if] = ACTIONS(447), + [anon_sym_impl] = ACTIONS(447), + [anon_sym_let] = ACTIONS(447), + [anon_sym_loop] = ACTIONS(447), + [anon_sym_match] = ACTIONS(447), + [anon_sym_mod] = ACTIONS(447), + [anon_sym_pub] = ACTIONS(447), + [anon_sym_return] = ACTIONS(447), + [anon_sym_static] = ACTIONS(447), + [anon_sym_struct] = ACTIONS(447), + [anon_sym_trait] = ACTIONS(447), + [anon_sym_type] = ACTIONS(447), + [anon_sym_union] = ACTIONS(447), + [anon_sym_unsafe] = ACTIONS(447), + [anon_sym_use] = ACTIONS(447), + [anon_sym_while] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_extern] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), [sym_block_comment] = ACTIONS(3), }, - [59] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1101), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_tuple_expression_repeat1] = STATE(61), + [56] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1117), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_tuple_expression_repeat1] = STATE(68), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_RPAREN] = ACTIONS(443), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -15391,8 +15079,323 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [60] = { - [ts_builtin_sym_end] = ACTIONS(554), + [57] = { + [ts_builtin_sym_end] = ACTIONS(449), + [sym_identifier] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_macro_rules_BANG] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u128] = ACTIONS(451), + [anon_sym_i128] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_str] = ACTIONS(451), + [anon_sym_char] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_as] = ACTIONS(455), + [anon_sym_async] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_const] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_default] = ACTIONS(451), + [anon_sym_enum] = ACTIONS(451), + [anon_sym_fn] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_impl] = ACTIONS(451), + [anon_sym_let] = ACTIONS(451), + [anon_sym_loop] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_mod] = ACTIONS(451), + [anon_sym_pub] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_static] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_trait] = ACTIONS(451), + [anon_sym_type] = ACTIONS(451), + [anon_sym_union] = ACTIONS(451), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_use] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_extern] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_move] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(449), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(449), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(451), + [sym_super] = ACTIONS(451), + [sym_crate] = ACTIONS(451), + [sym_metavariable] = ACTIONS(449), + [sym_raw_string_literal] = ACTIONS(449), + [sym_float_literal] = ACTIONS(449), + [sym_block_comment] = ACTIONS(3), + }, + [58] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1147), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_tuple_expression_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_RPAREN] = ACTIONS(457), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [59] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1163), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_tuple_expression_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(462), + [anon_sym_RPAREN] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_LBRACK] = ACTIONS(470), + [anon_sym_STAR] = ACTIONS(473), + [anon_sym_u8] = ACTIONS(476), + [anon_sym_i8] = ACTIONS(476), + [anon_sym_u16] = ACTIONS(476), + [anon_sym_i16] = ACTIONS(476), + [anon_sym_u32] = ACTIONS(476), + [anon_sym_i32] = ACTIONS(476), + [anon_sym_u64] = ACTIONS(476), + [anon_sym_i64] = ACTIONS(476), + [anon_sym_u128] = ACTIONS(476), + [anon_sym_i128] = ACTIONS(476), + [anon_sym_isize] = ACTIONS(476), + [anon_sym_usize] = ACTIONS(476), + [anon_sym_f32] = ACTIONS(476), + [anon_sym_f64] = ACTIONS(476), + [anon_sym_bool] = ACTIONS(476), + [anon_sym_str] = ACTIONS(476), + [anon_sym_char] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(479), + [anon_sym_async] = ACTIONS(482), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(488), + [anon_sym_continue] = ACTIONS(491), + [anon_sym_default] = ACTIONS(494), + [anon_sym_for] = ACTIONS(497), + [anon_sym_if] = ACTIONS(500), + [anon_sym_loop] = ACTIONS(503), + [anon_sym_match] = ACTIONS(506), + [anon_sym_return] = ACTIONS(509), + [anon_sym_union] = ACTIONS(494), + [anon_sym_unsafe] = ACTIONS(512), + [anon_sym_while] = ACTIONS(515), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_COLON_COLON] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_DOT_DOT] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_PIPE] = ACTIONS(530), + [anon_sym_move] = ACTIONS(533), + [sym_integer_literal] = ACTIONS(536), + [aux_sym_string_literal_token1] = ACTIONS(539), + [sym_char_literal] = ACTIONS(536), + [anon_sym_true] = ACTIONS(542), + [anon_sym_false] = ACTIONS(542), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(545), + [sym_super] = ACTIONS(548), + [sym_crate] = ACTIONS(548), + [sym_metavariable] = ACTIONS(551), + [sym_raw_string_literal] = ACTIONS(536), + [sym_float_literal] = ACTIONS(536), + [sym_block_comment] = ACTIONS(3), + }, + [60] = { + [ts_builtin_sym_end] = ACTIONS(554), [sym_identifier] = ACTIONS(556), [anon_sym_SEMI] = ACTIONS(554), [anon_sym_macro_rules_BANG] = ACTIONS(554), @@ -15400,9 +15403,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(554), [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_PLUS] = ACTIONS(548), + [anon_sym_PLUS] = ACTIONS(455), [anon_sym_STAR] = ACTIONS(556), - [anon_sym_QMARK] = ACTIONS(546), + [anon_sym_QMARK] = ACTIONS(453), [anon_sym_u8] = ACTIONS(556), [anon_sym_i8] = ACTIONS(556), [anon_sym_u16] = ACTIONS(556), @@ -15421,7 +15424,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(556), [anon_sym_char] = ACTIONS(556), [anon_sym_SQUOTE] = ACTIONS(556), - [anon_sym_as] = ACTIONS(548), + [anon_sym_as] = ACTIONS(455), [anon_sym_async] = ACTIONS(556), [anon_sym_break] = ACTIONS(556), [anon_sym_const] = ACTIONS(556), @@ -15448,40 +15451,40 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(556), [anon_sym_POUND] = ACTIONS(554), [anon_sym_BANG] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(455), [anon_sym_extern] = ACTIONS(556), [anon_sym_LT] = ACTIONS(556), - [anon_sym_GT] = ACTIONS(548), + [anon_sym_GT] = ACTIONS(455), [anon_sym_COLON_COLON] = ACTIONS(554), [anon_sym_AMP] = ACTIONS(556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), [anon_sym_DOT_DOT] = ACTIONS(556), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), [anon_sym_DASH] = ACTIONS(556), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), [anon_sym_PIPE] = ACTIONS(556), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), [anon_sym_move] = ACTIONS(556), - [anon_sym_DOT] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(455), [sym_integer_literal] = ACTIONS(554), [aux_sym_string_literal_token1] = ACTIONS(554), [sym_char_literal] = ACTIONS(554), @@ -15497,54 +15500,789 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [61] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1113), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [aux_sym_tuple_expression_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(558), + [sym_identifier] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_macro_rules_BANG] = ACTIONS(558), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_SQUOTE] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_async] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_default] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_if] = ACTIONS(560), + [anon_sym_impl] = ACTIONS(560), + [anon_sym_let] = ACTIONS(560), + [anon_sym_loop] = ACTIONS(560), + [anon_sym_match] = ACTIONS(560), + [anon_sym_mod] = ACTIONS(560), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_static] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_trait] = ACTIONS(560), + [anon_sym_type] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [anon_sym_unsafe] = ACTIONS(560), + [anon_sym_use] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_move] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [62] = { + [ts_builtin_sym_end] = ACTIONS(562), + [sym_identifier] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_macro_rules_BANG] = ACTIONS(562), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_SQUOTE] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_async] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_default] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_if] = ACTIONS(564), + [anon_sym_impl] = ACTIONS(564), + [anon_sym_let] = ACTIONS(564), + [anon_sym_loop] = ACTIONS(564), + [anon_sym_match] = ACTIONS(564), + [anon_sym_mod] = ACTIONS(564), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_static] = ACTIONS(564), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_trait] = ACTIONS(564), + [anon_sym_type] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [anon_sym_unsafe] = ACTIONS(564), + [anon_sym_use] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_move] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), + [sym_block_comment] = ACTIONS(3), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(566), + [sym_identifier] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(566), + [anon_sym_macro_rules_BANG] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(566), + [anon_sym_u8] = ACTIONS(568), + [anon_sym_i8] = ACTIONS(568), + [anon_sym_u16] = ACTIONS(568), + [anon_sym_i16] = ACTIONS(568), + [anon_sym_u32] = ACTIONS(568), + [anon_sym_i32] = ACTIONS(568), + [anon_sym_u64] = ACTIONS(568), + [anon_sym_i64] = ACTIONS(568), + [anon_sym_u128] = ACTIONS(568), + [anon_sym_i128] = ACTIONS(568), + [anon_sym_isize] = ACTIONS(568), + [anon_sym_usize] = ACTIONS(568), + [anon_sym_f32] = ACTIONS(568), + [anon_sym_f64] = ACTIONS(568), + [anon_sym_bool] = ACTIONS(568), + [anon_sym_str] = ACTIONS(568), + [anon_sym_char] = ACTIONS(568), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_as] = ACTIONS(568), + [anon_sym_async] = ACTIONS(568), + [anon_sym_break] = ACTIONS(568), + [anon_sym_const] = ACTIONS(568), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(568), + [anon_sym_for] = ACTIONS(568), + [anon_sym_if] = ACTIONS(568), + [anon_sym_impl] = ACTIONS(568), + [anon_sym_let] = ACTIONS(568), + [anon_sym_loop] = ACTIONS(568), + [anon_sym_match] = ACTIONS(568), + [anon_sym_mod] = ACTIONS(568), + [anon_sym_pub] = ACTIONS(568), + [anon_sym_return] = ACTIONS(568), + [anon_sym_static] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(568), + [anon_sym_trait] = ACTIONS(568), + [anon_sym_type] = ACTIONS(568), + [anon_sym_union] = ACTIONS(568), + [anon_sym_unsafe] = ACTIONS(568), + [anon_sym_use] = ACTIONS(568), + [anon_sym_while] = ACTIONS(568), + [anon_sym_POUND] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_extern] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(568), + [anon_sym_COLON_COLON] = ACTIONS(566), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(566), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_DOT_EQ] = ACTIONS(566), + [anon_sym_DASH] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(566), + [anon_sym_PIPE_PIPE] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(566), + [anon_sym_BANG_EQ] = ACTIONS(566), + [anon_sym_LT_EQ] = ACTIONS(566), + [anon_sym_GT_EQ] = ACTIONS(566), + [anon_sym_LT_LT] = ACTIONS(568), + [anon_sym_GT_GT] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(566), + [anon_sym_DASH_EQ] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(566), + [anon_sym_SLASH_EQ] = ACTIONS(566), + [anon_sym_PERCENT_EQ] = ACTIONS(566), + [anon_sym_AMP_EQ] = ACTIONS(566), + [anon_sym_PIPE_EQ] = ACTIONS(566), + [anon_sym_CARET_EQ] = ACTIONS(566), + [anon_sym_LT_LT_EQ] = ACTIONS(566), + [anon_sym_GT_GT_EQ] = ACTIONS(566), + [anon_sym_move] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(568), + [sym_integer_literal] = ACTIONS(566), + [aux_sym_string_literal_token1] = ACTIONS(566), + [sym_char_literal] = ACTIONS(566), + [anon_sym_true] = ACTIONS(568), + [anon_sym_false] = ACTIONS(568), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(568), + [sym_super] = ACTIONS(568), + [sym_crate] = ACTIONS(568), + [sym_metavariable] = ACTIONS(566), + [sym_raw_string_literal] = ACTIONS(566), + [sym_float_literal] = ACTIONS(566), + [sym_block_comment] = ACTIONS(3), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(570), + [sym_identifier] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(570), + [anon_sym_macro_rules_BANG] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_SQUOTE] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_async] = ACTIONS(572), + [anon_sym_break] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_continue] = ACTIONS(572), + [anon_sym_default] = ACTIONS(572), + [anon_sym_enum] = ACTIONS(572), + [anon_sym_fn] = ACTIONS(572), + [anon_sym_for] = ACTIONS(572), + [anon_sym_if] = ACTIONS(572), + [anon_sym_impl] = ACTIONS(572), + [anon_sym_let] = ACTIONS(572), + [anon_sym_loop] = ACTIONS(572), + [anon_sym_match] = ACTIONS(572), + [anon_sym_mod] = ACTIONS(572), + [anon_sym_pub] = ACTIONS(572), + [anon_sym_return] = ACTIONS(572), + [anon_sym_static] = ACTIONS(572), + [anon_sym_struct] = ACTIONS(572), + [anon_sym_trait] = ACTIONS(572), + [anon_sym_type] = ACTIONS(572), + [anon_sym_union] = ACTIONS(572), + [anon_sym_unsafe] = ACTIONS(572), + [anon_sym_use] = ACTIONS(572), + [anon_sym_while] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_extern] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_move] = ACTIONS(572), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), + [sym_block_comment] = ACTIONS(3), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(574), + [sym_identifier] = ACTIONS(576), + [anon_sym_SEMI] = ACTIONS(574), + [anon_sym_macro_rules_BANG] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_async] = ACTIONS(576), + [anon_sym_break] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_continue] = ACTIONS(576), + [anon_sym_default] = ACTIONS(576), + [anon_sym_enum] = ACTIONS(576), + [anon_sym_fn] = ACTIONS(576), + [anon_sym_for] = ACTIONS(576), + [anon_sym_if] = ACTIONS(576), + [anon_sym_impl] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_loop] = ACTIONS(576), + [anon_sym_match] = ACTIONS(576), + [anon_sym_mod] = ACTIONS(576), + [anon_sym_pub] = ACTIONS(576), + [anon_sym_return] = ACTIONS(576), + [anon_sym_static] = ACTIONS(576), + [anon_sym_struct] = ACTIONS(576), + [anon_sym_trait] = ACTIONS(576), + [anon_sym_type] = ACTIONS(576), + [anon_sym_union] = ACTIONS(576), + [anon_sym_unsafe] = ACTIONS(576), + [anon_sym_use] = ACTIONS(576), + [anon_sym_while] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_extern] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_move] = ACTIONS(576), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(578), + [sym_identifier] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(578), + [anon_sym_macro_rules_BANG] = ACTIONS(578), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(580), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [anon_sym_POUND] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_EQ] = ACTIONS(580), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_LT] = ACTIONS(580), + [anon_sym_GT] = ACTIONS(580), + [anon_sym_COLON_COLON] = ACTIONS(578), + [anon_sym_AMP] = ACTIONS(580), + [anon_sym_DOT_DOT_DOT] = ACTIONS(578), + [anon_sym_DOT_DOT] = ACTIONS(580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_AMP_AMP] = ACTIONS(578), + [anon_sym_PIPE_PIPE] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_EQ_EQ] = ACTIONS(578), + [anon_sym_BANG_EQ] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(580), + [anon_sym_GT_GT] = ACTIONS(580), + [anon_sym_SLASH] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(580), + [anon_sym_PLUS_EQ] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(578), + [anon_sym_STAR_EQ] = ACTIONS(578), + [anon_sym_SLASH_EQ] = ACTIONS(578), + [anon_sym_PERCENT_EQ] = ACTIONS(578), + [anon_sym_AMP_EQ] = ACTIONS(578), + [anon_sym_PIPE_EQ] = ACTIONS(578), + [anon_sym_CARET_EQ] = ACTIONS(578), + [anon_sym_LT_LT_EQ] = ACTIONS(578), + [anon_sym_GT_GT_EQ] = ACTIONS(578), + [anon_sym_move] = ACTIONS(580), + [anon_sym_DOT] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(582), + [sym_identifier] = ACTIONS(584), + [anon_sym_SEMI] = ACTIONS(582), + [anon_sym_macro_rules_BANG] = ACTIONS(582), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_async] = ACTIONS(584), + [anon_sym_break] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(584), + [anon_sym_default] = ACTIONS(584), + [anon_sym_enum] = ACTIONS(584), + [anon_sym_fn] = ACTIONS(584), + [anon_sym_for] = ACTIONS(584), + [anon_sym_if] = ACTIONS(584), + [anon_sym_impl] = ACTIONS(584), + [anon_sym_let] = ACTIONS(584), + [anon_sym_loop] = ACTIONS(584), + [anon_sym_match] = ACTIONS(584), + [anon_sym_mod] = ACTIONS(584), + [anon_sym_pub] = ACTIONS(584), + [anon_sym_return] = ACTIONS(584), + [anon_sym_static] = ACTIONS(584), + [anon_sym_struct] = ACTIONS(584), + [anon_sym_trait] = ACTIONS(584), + [anon_sym_type] = ACTIONS(584), + [anon_sym_union] = ACTIONS(584), + [anon_sym_unsafe] = ACTIONS(584), + [anon_sym_use] = ACTIONS(584), + [anon_sym_while] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_extern] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_move] = ACTIONS(584), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), + [sym_block_comment] = ACTIONS(3), + }, + [68] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1093), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [aux_sym_tuple_expression_repeat1] = STATE(59), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(586), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), @@ -15601,741 +16339,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(560), - [sym_identifier] = ACTIONS(562), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_macro_rules_BANG] = ACTIONS(560), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_PLUS] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(560), - [anon_sym_u8] = ACTIONS(562), - [anon_sym_i8] = ACTIONS(562), - [anon_sym_u16] = ACTIONS(562), - [anon_sym_i16] = ACTIONS(562), - [anon_sym_u32] = ACTIONS(562), - [anon_sym_i32] = ACTIONS(562), - [anon_sym_u64] = ACTIONS(562), - [anon_sym_i64] = ACTIONS(562), - [anon_sym_u128] = ACTIONS(562), - [anon_sym_i128] = ACTIONS(562), - [anon_sym_isize] = ACTIONS(562), - [anon_sym_usize] = ACTIONS(562), - [anon_sym_f32] = ACTIONS(562), - [anon_sym_f64] = ACTIONS(562), - [anon_sym_bool] = ACTIONS(562), - [anon_sym_str] = ACTIONS(562), - [anon_sym_char] = ACTIONS(562), - [anon_sym_SQUOTE] = ACTIONS(562), - [anon_sym_as] = ACTIONS(562), - [anon_sym_async] = ACTIONS(562), - [anon_sym_break] = ACTIONS(562), - [anon_sym_const] = ACTIONS(562), - [anon_sym_continue] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_enum] = ACTIONS(562), - [anon_sym_fn] = ACTIONS(562), - [anon_sym_for] = ACTIONS(562), - [anon_sym_if] = ACTIONS(562), - [anon_sym_impl] = ACTIONS(562), - [anon_sym_let] = ACTIONS(562), - [anon_sym_loop] = ACTIONS(562), - [anon_sym_match] = ACTIONS(562), - [anon_sym_mod] = ACTIONS(562), - [anon_sym_pub] = ACTIONS(562), - [anon_sym_return] = ACTIONS(562), - [anon_sym_static] = ACTIONS(562), - [anon_sym_struct] = ACTIONS(562), - [anon_sym_trait] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_union] = ACTIONS(562), - [anon_sym_unsafe] = ACTIONS(562), - [anon_sym_use] = ACTIONS(562), - [anon_sym_while] = ACTIONS(562), - [anon_sym_POUND] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(562), - [anon_sym_COLON_COLON] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(562), - [anon_sym_DOT_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(562), - [anon_sym_DOT_DOT_EQ] = ACTIONS(560), - [anon_sym_DASH] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(560), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(562), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ] = ACTIONS(560), - [anon_sym_LT_EQ] = ACTIONS(560), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_PLUS_EQ] = ACTIONS(560), - [anon_sym_DASH_EQ] = ACTIONS(560), - [anon_sym_STAR_EQ] = ACTIONS(560), - [anon_sym_SLASH_EQ] = ACTIONS(560), - [anon_sym_PERCENT_EQ] = ACTIONS(560), - [anon_sym_AMP_EQ] = ACTIONS(560), - [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_CARET_EQ] = ACTIONS(560), - [anon_sym_LT_LT_EQ] = ACTIONS(560), - [anon_sym_GT_GT_EQ] = ACTIONS(560), - [anon_sym_move] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(560), - [aux_sym_string_literal_token1] = ACTIONS(560), - [sym_char_literal] = ACTIONS(560), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(562), - [sym_super] = ACTIONS(562), - [sym_crate] = ACTIONS(562), - [sym_metavariable] = ACTIONS(560), - [sym_raw_string_literal] = ACTIONS(560), - [sym_float_literal] = ACTIONS(560), - [sym_block_comment] = ACTIONS(3), - }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(564), - [sym_identifier] = ACTIONS(566), - [anon_sym_SEMI] = ACTIONS(564), - [anon_sym_macro_rules_BANG] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(566), - [anon_sym_i8] = ACTIONS(566), - [anon_sym_u16] = ACTIONS(566), - [anon_sym_i16] = ACTIONS(566), - [anon_sym_u32] = ACTIONS(566), - [anon_sym_i32] = ACTIONS(566), - [anon_sym_u64] = ACTIONS(566), - [anon_sym_i64] = ACTIONS(566), - [anon_sym_u128] = ACTIONS(566), - [anon_sym_i128] = ACTIONS(566), - [anon_sym_isize] = ACTIONS(566), - [anon_sym_usize] = ACTIONS(566), - [anon_sym_f32] = ACTIONS(566), - [anon_sym_f64] = ACTIONS(566), - [anon_sym_bool] = ACTIONS(566), - [anon_sym_str] = ACTIONS(566), - [anon_sym_char] = ACTIONS(566), - [anon_sym_SQUOTE] = ACTIONS(566), - [anon_sym_as] = ACTIONS(566), - [anon_sym_async] = ACTIONS(566), - [anon_sym_break] = ACTIONS(566), - [anon_sym_const] = ACTIONS(566), - [anon_sym_continue] = ACTIONS(566), - [anon_sym_default] = ACTIONS(566), - [anon_sym_enum] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(566), - [anon_sym_for] = ACTIONS(566), - [anon_sym_if] = ACTIONS(566), - [anon_sym_impl] = ACTIONS(566), - [anon_sym_let] = ACTIONS(566), - [anon_sym_loop] = ACTIONS(566), - [anon_sym_match] = ACTIONS(566), - [anon_sym_mod] = ACTIONS(566), - [anon_sym_pub] = ACTIONS(566), - [anon_sym_return] = ACTIONS(566), - [anon_sym_static] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(566), - [anon_sym_trait] = ACTIONS(566), - [anon_sym_type] = ACTIONS(566), - [anon_sym_union] = ACTIONS(566), - [anon_sym_unsafe] = ACTIONS(566), - [anon_sym_use] = ACTIONS(566), - [anon_sym_while] = ACTIONS(566), - [anon_sym_POUND] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_extern] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_GT] = ACTIONS(566), - [anon_sym_COLON_COLON] = ACTIONS(564), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [anon_sym_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(566), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(566), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(566), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_move] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(566), - [sym_integer_literal] = ACTIONS(564), - [aux_sym_string_literal_token1] = ACTIONS(564), - [sym_char_literal] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(566), - [sym_super] = ACTIONS(566), - [sym_crate] = ACTIONS(566), - [sym_metavariable] = ACTIONS(564), - [sym_raw_string_literal] = ACTIONS(564), - [sym_float_literal] = ACTIONS(564), - [sym_block_comment] = ACTIONS(3), - }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(568), - [sym_identifier] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(568), - [anon_sym_macro_rules_BANG] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_u8] = ACTIONS(570), - [anon_sym_i8] = ACTIONS(570), - [anon_sym_u16] = ACTIONS(570), - [anon_sym_i16] = ACTIONS(570), - [anon_sym_u32] = ACTIONS(570), - [anon_sym_i32] = ACTIONS(570), - [anon_sym_u64] = ACTIONS(570), - [anon_sym_i64] = ACTIONS(570), - [anon_sym_u128] = ACTIONS(570), - [anon_sym_i128] = ACTIONS(570), - [anon_sym_isize] = ACTIONS(570), - [anon_sym_usize] = ACTIONS(570), - [anon_sym_f32] = ACTIONS(570), - [anon_sym_f64] = ACTIONS(570), - [anon_sym_bool] = ACTIONS(570), - [anon_sym_str] = ACTIONS(570), - [anon_sym_char] = ACTIONS(570), - [anon_sym_SQUOTE] = ACTIONS(570), - [anon_sym_as] = ACTIONS(570), - [anon_sym_async] = ACTIONS(570), - [anon_sym_break] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_continue] = ACTIONS(570), - [anon_sym_default] = ACTIONS(570), - [anon_sym_enum] = ACTIONS(570), - [anon_sym_fn] = ACTIONS(570), - [anon_sym_for] = ACTIONS(570), - [anon_sym_if] = ACTIONS(570), - [anon_sym_impl] = ACTIONS(570), - [anon_sym_let] = ACTIONS(570), - [anon_sym_loop] = ACTIONS(570), - [anon_sym_match] = ACTIONS(570), - [anon_sym_mod] = ACTIONS(570), - [anon_sym_pub] = ACTIONS(570), - [anon_sym_return] = ACTIONS(570), - [anon_sym_static] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(570), - [anon_sym_trait] = ACTIONS(570), - [anon_sym_type] = ACTIONS(570), - [anon_sym_union] = ACTIONS(570), - [anon_sym_unsafe] = ACTIONS(570), - [anon_sym_use] = ACTIONS(570), - [anon_sym_while] = ACTIONS(570), - [anon_sym_POUND] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_extern] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(568), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(568), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT_EQ] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_AMP_AMP] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(568), - [anon_sym_BANG_EQ] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(568), - [anon_sym_GT_EQ] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(568), - [anon_sym_DASH_EQ] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(568), - [anon_sym_SLASH_EQ] = ACTIONS(568), - [anon_sym_PERCENT_EQ] = ACTIONS(568), - [anon_sym_AMP_EQ] = ACTIONS(568), - [anon_sym_PIPE_EQ] = ACTIONS(568), - [anon_sym_CARET_EQ] = ACTIONS(568), - [anon_sym_LT_LT_EQ] = ACTIONS(568), - [anon_sym_GT_GT_EQ] = ACTIONS(568), - [anon_sym_move] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(570), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(568), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(570), - [anon_sym_false] = ACTIONS(570), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(570), - [sym_super] = ACTIONS(570), - [sym_crate] = ACTIONS(570), - [sym_metavariable] = ACTIONS(568), - [sym_raw_string_literal] = ACTIONS(568), - [sym_float_literal] = ACTIONS(568), - [sym_block_comment] = ACTIONS(3), - }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(572), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_macro_rules_BANG] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(574), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_extern] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_COLON_COLON] = ACTIONS(572), - [anon_sym_AMP] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(572), - [anon_sym_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_move] = ACTIONS(574), - [anon_sym_DOT] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(572), - [aux_sym_string_literal_token1] = ACTIONS(572), - [sym_char_literal] = ACTIONS(572), - [anon_sym_true] = ACTIONS(574), - [anon_sym_false] = ACTIONS(574), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(572), - [sym_raw_string_literal] = ACTIONS(572), - [sym_float_literal] = ACTIONS(572), - [sym_block_comment] = ACTIONS(3), - }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(576), - [sym_identifier] = ACTIONS(578), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_macro_rules_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_LBRACE] = ACTIONS(576), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(578), - [anon_sym_i8] = ACTIONS(578), - [anon_sym_u16] = ACTIONS(578), - [anon_sym_i16] = ACTIONS(578), - [anon_sym_u32] = ACTIONS(578), - [anon_sym_i32] = ACTIONS(578), - [anon_sym_u64] = ACTIONS(578), - [anon_sym_i64] = ACTIONS(578), - [anon_sym_u128] = ACTIONS(578), - [anon_sym_i128] = ACTIONS(578), - [anon_sym_isize] = ACTIONS(578), - [anon_sym_usize] = ACTIONS(578), - [anon_sym_f32] = ACTIONS(578), - [anon_sym_f64] = ACTIONS(578), - [anon_sym_bool] = ACTIONS(578), - [anon_sym_str] = ACTIONS(578), - [anon_sym_char] = ACTIONS(578), - [anon_sym_SQUOTE] = ACTIONS(578), - [anon_sym_as] = ACTIONS(578), - [anon_sym_async] = ACTIONS(578), - [anon_sym_break] = ACTIONS(578), - [anon_sym_const] = ACTIONS(578), - [anon_sym_continue] = ACTIONS(578), - [anon_sym_default] = ACTIONS(578), - [anon_sym_enum] = ACTIONS(578), - [anon_sym_fn] = ACTIONS(578), - [anon_sym_for] = ACTIONS(578), - [anon_sym_if] = ACTIONS(578), - [anon_sym_impl] = ACTIONS(578), - [anon_sym_let] = ACTIONS(578), - [anon_sym_loop] = ACTIONS(578), - [anon_sym_match] = ACTIONS(578), - [anon_sym_mod] = ACTIONS(578), - [anon_sym_pub] = ACTIONS(578), - [anon_sym_return] = ACTIONS(578), - [anon_sym_static] = ACTIONS(578), - [anon_sym_struct] = ACTIONS(578), - [anon_sym_trait] = ACTIONS(578), - [anon_sym_type] = ACTIONS(578), - [anon_sym_union] = ACTIONS(578), - [anon_sym_unsafe] = ACTIONS(578), - [anon_sym_use] = ACTIONS(578), - [anon_sym_while] = ACTIONS(578), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_BANG] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_extern] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_GT] = ACTIONS(578), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(578), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(578), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(578), - [anon_sym_PERCENT] = ACTIONS(578), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_move] = ACTIONS(578), - [anon_sym_DOT] = ACTIONS(578), - [sym_integer_literal] = ACTIONS(576), - [aux_sym_string_literal_token1] = ACTIONS(576), - [sym_char_literal] = ACTIONS(576), - [anon_sym_true] = ACTIONS(578), - [anon_sym_false] = ACTIONS(578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(578), - [sym_super] = ACTIONS(578), - [sym_crate] = ACTIONS(578), - [sym_metavariable] = ACTIONS(576), - [sym_raw_string_literal] = ACTIONS(576), - [sym_float_literal] = ACTIONS(576), - [sym_block_comment] = ACTIONS(3), - }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(580), - [sym_identifier] = ACTIONS(582), - [anon_sym_SEMI] = ACTIONS(580), - [anon_sym_macro_rules_BANG] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_SQUOTE] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_async] = ACTIONS(582), - [anon_sym_break] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_continue] = ACTIONS(582), - [anon_sym_default] = ACTIONS(582), - [anon_sym_enum] = ACTIONS(582), - [anon_sym_fn] = ACTIONS(582), - [anon_sym_for] = ACTIONS(582), - [anon_sym_if] = ACTIONS(582), - [anon_sym_impl] = ACTIONS(582), - [anon_sym_let] = ACTIONS(582), - [anon_sym_loop] = ACTIONS(582), - [anon_sym_match] = ACTIONS(582), - [anon_sym_mod] = ACTIONS(582), - [anon_sym_pub] = ACTIONS(582), - [anon_sym_return] = ACTIONS(582), - [anon_sym_static] = ACTIONS(582), - [anon_sym_struct] = ACTIONS(582), - [anon_sym_trait] = ACTIONS(582), - [anon_sym_type] = ACTIONS(582), - [anon_sym_union] = ACTIONS(582), - [anon_sym_unsafe] = ACTIONS(582), - [anon_sym_use] = ACTIONS(582), - [anon_sym_while] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_BANG] = ACTIONS(582), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_extern] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_move] = ACTIONS(582), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(584), - [sym_identifier] = ACTIONS(586), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_macro_rules_BANG] = ACTIONS(584), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_SQUOTE] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_async] = ACTIONS(586), - [anon_sym_break] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_continue] = ACTIONS(586), - [anon_sym_default] = ACTIONS(586), - [anon_sym_enum] = ACTIONS(586), - [anon_sym_fn] = ACTIONS(586), - [anon_sym_for] = ACTIONS(586), - [anon_sym_if] = ACTIONS(586), - [anon_sym_impl] = ACTIONS(586), - [anon_sym_let] = ACTIONS(586), - [anon_sym_loop] = ACTIONS(586), - [anon_sym_match] = ACTIONS(586), - [anon_sym_mod] = ACTIONS(586), - [anon_sym_pub] = ACTIONS(586), - [anon_sym_return] = ACTIONS(586), - [anon_sym_static] = ACTIONS(586), - [anon_sym_struct] = ACTIONS(586), - [anon_sym_trait] = ACTIONS(586), - [anon_sym_type] = ACTIONS(586), - [anon_sym_union] = ACTIONS(586), - [anon_sym_unsafe] = ACTIONS(586), - [anon_sym_use] = ACTIONS(586), - [anon_sym_while] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_extern] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_move] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), - [sym_block_comment] = ACTIONS(3), - }, [69] = { [ts_builtin_sym_end] = ACTIONS(588), [sym_identifier] = ACTIONS(590), @@ -16652,50 +16655,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [72] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1147), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1172), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1027), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -16726,7 +16729,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(602), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -16734,11 +16736,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(600), + [anon_sym_DASH_GT] = ACTIONS(602), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(604), [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(339), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), @@ -16756,263 +16759,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [73] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1117), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(608), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [74] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1106), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [75] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_RBRACK] = ACTIONS(608), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -17067,51 +16862,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [76] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1157), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(1011), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [74] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1108), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17142,6 +16937,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(610), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -17149,12 +16945,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(614), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(604), [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), @@ -17171,51 +16966,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [77] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1135), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [75] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(612), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [76] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1122), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17246,7 +17145,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(616), + [anon_sym_let] = ACTIONS(614), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -17275,51 +17174,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [78] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1010), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(1011), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [77] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1031), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1021), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17357,7 +17256,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(614), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), @@ -17379,51 +17278,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [79] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1176), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(1031), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [78] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1134), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17454,6 +17353,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(618), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -17461,12 +17361,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(600), - [anon_sym_DASH_GT] = ACTIONS(618), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(604), [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), @@ -17483,155 +17382,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [80] = { - [sym_identifier] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(546), - [anon_sym_macro_rules_BANG] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(544), - [anon_sym_i8] = ACTIONS(544), - [anon_sym_u16] = ACTIONS(544), - [anon_sym_i16] = ACTIONS(544), - [anon_sym_u32] = ACTIONS(544), - [anon_sym_i32] = ACTIONS(544), - [anon_sym_u64] = ACTIONS(544), - [anon_sym_i64] = ACTIONS(544), - [anon_sym_u128] = ACTIONS(544), - [anon_sym_i128] = ACTIONS(544), - [anon_sym_isize] = ACTIONS(544), - [anon_sym_usize] = ACTIONS(544), - [anon_sym_f32] = ACTIONS(544), - [anon_sym_f64] = ACTIONS(544), - [anon_sym_bool] = ACTIONS(544), - [anon_sym_str] = ACTIONS(544), - [anon_sym_char] = ACTIONS(544), - [anon_sym_SQUOTE] = ACTIONS(544), - [anon_sym_as] = ACTIONS(548), - [anon_sym_async] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_if] = ACTIONS(544), - [anon_sym_impl] = ACTIONS(544), - [anon_sym_let] = ACTIONS(544), - [anon_sym_loop] = ACTIONS(544), - [anon_sym_match] = ACTIONS(544), - [anon_sym_mod] = ACTIONS(544), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_trait] = ACTIONS(544), - [anon_sym_type] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [anon_sym_unsafe] = ACTIONS(544), - [anon_sym_use] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_LT] = ACTIONS(548), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_move] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(542), - [aux_sym_string_literal_token1] = ACTIONS(542), - [sym_char_literal] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(544), - [sym_super] = ACTIONS(544), - [sym_crate] = ACTIONS(544), - [sym_metavariable] = ACTIONS(542), - [sym_raw_string_literal] = ACTIONS(542), - [sym_float_literal] = ACTIONS(542), - [sym_block_comment] = ACTIONS(3), - }, - [81] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(757), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [79] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1145), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17662,6 +17457,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(620), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -17672,7 +17468,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(604), - [sym_mutable_specifier] = ACTIONS(620), [anon_sym_DOT_DOT] = ACTIONS(606), [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), @@ -17691,51 +17486,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1148), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [80] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1140), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17795,51 +17590,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [83] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1093), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [81] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1149), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -17899,56 +17694,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [84] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [82] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1054), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -17985,6 +17779,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(81), + [sym_mutable_specifier] = ACTIONS(626), [anon_sym_DOT_DOT] = ACTIONS(83), [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), @@ -18003,51 +17798,155 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1139), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [83] = { + [sym_identifier] = ACTIONS(451), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_macro_rules_BANG] = ACTIONS(449), + [anon_sym_LPAREN] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(449), + [anon_sym_RBRACE] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(453), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(451), + [anon_sym_i8] = ACTIONS(451), + [anon_sym_u16] = ACTIONS(451), + [anon_sym_i16] = ACTIONS(451), + [anon_sym_u32] = ACTIONS(451), + [anon_sym_i32] = ACTIONS(451), + [anon_sym_u64] = ACTIONS(451), + [anon_sym_i64] = ACTIONS(451), + [anon_sym_u128] = ACTIONS(451), + [anon_sym_i128] = ACTIONS(451), + [anon_sym_isize] = ACTIONS(451), + [anon_sym_usize] = ACTIONS(451), + [anon_sym_f32] = ACTIONS(451), + [anon_sym_f64] = ACTIONS(451), + [anon_sym_bool] = ACTIONS(451), + [anon_sym_str] = ACTIONS(451), + [anon_sym_char] = ACTIONS(451), + [anon_sym_SQUOTE] = ACTIONS(451), + [anon_sym_as] = ACTIONS(455), + [anon_sym_async] = ACTIONS(451), + [anon_sym_break] = ACTIONS(451), + [anon_sym_const] = ACTIONS(451), + [anon_sym_continue] = ACTIONS(451), + [anon_sym_default] = ACTIONS(451), + [anon_sym_enum] = ACTIONS(451), + [anon_sym_fn] = ACTIONS(451), + [anon_sym_for] = ACTIONS(451), + [anon_sym_if] = ACTIONS(451), + [anon_sym_impl] = ACTIONS(451), + [anon_sym_let] = ACTIONS(451), + [anon_sym_loop] = ACTIONS(451), + [anon_sym_match] = ACTIONS(451), + [anon_sym_mod] = ACTIONS(451), + [anon_sym_pub] = ACTIONS(451), + [anon_sym_return] = ACTIONS(451), + [anon_sym_static] = ACTIONS(451), + [anon_sym_struct] = ACTIONS(451), + [anon_sym_trait] = ACTIONS(451), + [anon_sym_type] = ACTIONS(451), + [anon_sym_union] = ACTIONS(451), + [anon_sym_unsafe] = ACTIONS(451), + [anon_sym_use] = ACTIONS(451), + [anon_sym_while] = ACTIONS(451), + [anon_sym_POUND] = ACTIONS(449), + [anon_sym_BANG] = ACTIONS(451), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_extern] = ACTIONS(451), + [anon_sym_LT] = ACTIONS(455), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(455), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_move] = ACTIONS(451), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(449), + [aux_sym_string_literal_token1] = ACTIONS(449), + [sym_char_literal] = ACTIONS(449), + [anon_sym_true] = ACTIONS(451), + [anon_sym_false] = ACTIONS(451), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(451), + [sym_super] = ACTIONS(451), + [sym_crate] = ACTIONS(451), + [sym_metavariable] = ACTIONS(449), + [sym_raw_string_literal] = ACTIONS(449), + [sym_float_literal] = ACTIONS(449), + [sym_block_comment] = ACTIONS(3), + }, + [84] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1202), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1021), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18078,7 +17977,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(628), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -18086,11 +17984,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(600), + [anon_sym_DASH_GT] = ACTIONS(616), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(604), [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_DASH] = ACTIONS(339), [anon_sym_PIPE] = ACTIONS(85), [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), @@ -18107,363 +18006,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(630), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [87] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1030), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(1031), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_DASH_GT] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [88] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(757), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [sym_mutable_specifier] = ACTIONS(632), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [89] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1145), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [85] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1141), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18494,7 +18081,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(634), + [anon_sym_let] = ACTIONS(628), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -18523,51 +18110,155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [90] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1131), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [86] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1025), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1027), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_DASH_GT] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(303), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [87] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1120), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18598,7 +18289,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(289), [anon_sym_for] = ACTIONS(291), [anon_sym_if] = ACTIONS(293), - [anon_sym_let] = ACTIONS(636), + [anon_sym_let] = ACTIONS(630), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(337), @@ -18627,55 +18318,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [91] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1156), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [88] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(632), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), [anon_sym_i8] = ACTIONS(21), @@ -18730,51 +18422,362 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [89] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1186), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [sym_mutable_specifier] = ACTIONS(634), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [90] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1127), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_let] = ACTIONS(636), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [91] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1216), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [92] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(994), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1206), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18834,50 +18837,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [93] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1171), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1209), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -18937,50 +18940,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [94] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1116), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1194), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19040,50 +19043,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [95] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1168), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1169), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19143,50 +19146,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [96] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1115), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1094), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19246,50 +19249,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [97] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1151), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1148), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19349,50 +19352,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [98] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1158), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1151), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19452,178 +19455,178 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [99] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1162), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1102), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(242), + [sym_if_let_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_while_let_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2390), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(638), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), + [anon_sym_async] = ACTIONS(640), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(642), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_for] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(648), + [anon_sym_match] = ACTIONS(650), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_while] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [100] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1104), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1173), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -19631,77 +19634,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [101] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1195), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1116), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19761,50 +19764,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [102] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(739), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1210), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(242), + [sym_if_let_expression] = STATE(242), + [sym_match_expression] = STATE(242), + [sym_while_expression] = STATE(242), + [sym_while_let_expression] = STATE(242), + [sym_loop_expression] = STATE(242), + [sym_for_expression] = STATE(242), + [sym_const_block] = STATE(242), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2390), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(242), + [sym_async_block] = STATE(242), + [sym_block] = STATE(242), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(638), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(640), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(642), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(648), + [anon_sym_match] = ACTIONS(650), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_while] = ACTIONS(654), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [103] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1012), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19863,51 +19969,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [103] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1167), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [104] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1174), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -19966,154 +20072,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [104] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1753), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter] = STATE(1753), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1591), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(670), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, [105] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1119), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1144), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -20173,50 +20176,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [106] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1165), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1219), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -20276,75 +20279,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [107] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1159), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1034), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -20352,102 +20355,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [108] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1207), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1161), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -20455,77 +20458,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [109] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1164), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1095), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -20585,50 +20588,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [110] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1160), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1177), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -20688,281 +20691,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [111] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1753), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter] = STATE(1753), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1591), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [112] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1190), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [113] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1153), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1014), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -20970,77 +20767,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [114] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1216), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [112] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1023), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -21099,154 +20896,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [115] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1753), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter] = STATE(1753), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1591), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(710), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(678), - [anon_sym_AMP] = ACTIONS(680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(698), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [116] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1155), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [113] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1138), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -21305,51 +20999,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), + [114] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), [sym__expression] = STATE(1215), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -21408,179 +21102,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [118] = { - [sym_attribute_item] = STATE(187), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1753), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter] = STATE(1753), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(720), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [119] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1203), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [115] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1181), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -21588,102 +21179,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [120] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1212), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [116] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1017), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -21691,102 +21282,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [121] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1184), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [117] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1159), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -21794,102 +21385,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [122] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1182), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [118] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1035), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -21897,205 +21488,205 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [123] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1172), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [119] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1755), + [sym_variadic_parameter] = STATE(1755), + [sym_parameter] = STATE(1755), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1629), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(688), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [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_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), + [sym_self] = ACTIONS(716), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [124] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(784), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), + [120] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1167), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), + [anon_sym_break] = ACTIONS(27), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -22103,77 +21694,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), + [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), + [anon_sym_move] = ACTIONS(87), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [125] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1183), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [121] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1153), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22232,51 +21823,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [126] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1108), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [122] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1024), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22335,51 +21926,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(774), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [123] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1121), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22438,51 +22029,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1100), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [124] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1044), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22541,51 +22132,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1169), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [125] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1165), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22644,51 +22235,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1189), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [126] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1199), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22747,154 +22338,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [131] = { - [sym_attribute_item] = STATE(189), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1947), - [sym_variadic_parameter] = STATE(1947), - [sym_parameter] = STATE(1947), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1742), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(736), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [127] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1160), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [132] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1152), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [128] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1143), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -22953,76 +22544,76 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1177), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [129] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1200), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -23030,77 +22621,283 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [134] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), + [130] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1213), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [131] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), [sym__expression] = STATE(1214), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [132] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1060), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23159,51 +22956,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [135] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1128), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [133] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1123), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23262,51 +23059,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [136] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1118), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [134] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1217), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23365,51 +23162,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [137] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1170), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [135] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1162), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23468,51 +23265,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [138] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1035), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [136] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1106), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23571,76 +23368,282 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, + [137] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1755), + [sym_variadic_parameter] = STATE(1755), + [sym_parameter] = STATE(1755), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1629), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(724), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(716), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [138] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1218), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, [139] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1022), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(794), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -23648,77 +23651,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, [140] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1021), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1154), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23778,50 +23781,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [141] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1015), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1170), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23881,50 +23884,50 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [142] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1006), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1158), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -23984,50 +23987,153 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [143] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1129), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1156), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(19), + [anon_sym_u8] = ACTIONS(21), + [anon_sym_i8] = ACTIONS(21), + [anon_sym_u16] = ACTIONS(21), + [anon_sym_i16] = ACTIONS(21), + [anon_sym_u32] = ACTIONS(21), + [anon_sym_i32] = ACTIONS(21), + [anon_sym_u64] = ACTIONS(21), + [anon_sym_i64] = ACTIONS(21), + [anon_sym_u128] = ACTIONS(21), + [anon_sym_i128] = ACTIONS(21), + [anon_sym_isize] = ACTIONS(21), + [anon_sym_usize] = ACTIONS(21), + [anon_sym_f32] = ACTIONS(21), + [anon_sym_f64] = ACTIONS(21), + [anon_sym_bool] = ACTIONS(21), + [anon_sym_str] = ACTIONS(21), + [anon_sym_char] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(27), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(55), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(81), + [anon_sym_DOT_DOT] = ACTIONS(83), + [anon_sym_DASH] = ACTIONS(19), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(87), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(95), + [sym_super] = ACTIONS(97), + [sym_crate] = ACTIONS(97), + [sym_metavariable] = ACTIONS(101), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [144] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1211), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24086,51 +24192,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1130), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [145] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1197), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24189,76 +24295,76 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1205), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [146] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1195), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -24266,102 +24372,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [146] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1200), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [147] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1191), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -24369,77 +24475,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [147] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1206), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [148] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1045), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24498,51 +24604,257 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1004), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [149] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1146), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [150] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1203), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [151] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(794), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24601,51 +24913,154 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1111), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [152] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1109), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_async] = ACTIONS(285), + [anon_sym_break] = ACTIONS(335), + [anon_sym_const] = ACTIONS(287), + [anon_sym_continue] = ACTIONS(31), + [anon_sym_default] = ACTIONS(289), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), + [anon_sym_return] = ACTIONS(337), + [anon_sym_union] = ACTIONS(289), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(600), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_move] = ACTIONS(343), + [sym_integer_literal] = ACTIONS(89), + [aux_sym_string_literal_token1] = ACTIONS(91), + [sym_char_literal] = ACTIONS(89), + [anon_sym_true] = ACTIONS(93), + [anon_sym_false] = ACTIONS(93), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), + [sym_raw_string_literal] = ACTIONS(89), + [sym_float_literal] = ACTIONS(89), + [sym_block_comment] = ACTIONS(3), + }, + [153] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1050), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24704,51 +25119,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [150] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1134), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [154] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1175), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24807,51 +25222,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [151] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1143), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [155] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1168), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -24910,51 +25325,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [152] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(978), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [156] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1063), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25013,51 +25428,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [153] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(976), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [157] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1164), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25116,51 +25531,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [154] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(971), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [158] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1755), + [sym_variadic_parameter] = STATE(1755), + [sym_parameter] = STATE(1755), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1629), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(716), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [159] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1178), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25219,51 +25737,154 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [155] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1202), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [160] = { + [sym_attribute_item] = STATE(188), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1755), + [sym_variadic_parameter] = STATE(1755), + [sym_parameter] = STATE(1755), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [161] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1101), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25322,51 +25943,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [156] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1109), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [162] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1112), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25425,54 +26046,54 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), + [163] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), [sym__expression] = STATE(1103), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2387), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -25493,19 +26114,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(742), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(744), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(750), - [anon_sym_match] = ACTIONS(752), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_while] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -25528,76 +26149,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [158] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1112), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [164] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1135), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -25605,80 +26226,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [159] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1201), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(230), - [sym_if_let_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_while_let_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2387), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [165] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1190), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -25699,19 +26320,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(742), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(744), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(750), - [anon_sym_match] = ACTIONS(752), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_while] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -25734,51 +26355,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [160] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1150), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [166] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1152), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -25837,179 +26458,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [161] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1161), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(236), - [sym_if_let_expression] = STATE(236), - [sym_match_expression] = STATE(236), - [sym_while_expression] = STATE(236), - [sym_while_let_expression] = STATE(236), - [sym_loop_expression] = STATE(236), - [sym_for_expression] = STATE(236), - [sym_const_block] = STATE(236), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2387), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(236), - [sym_async_block] = STATE(236), - [sym_block] = STATE(236), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(742), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(750), - [anon_sym_match] = ACTIONS(752), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_while] = ACTIONS(756), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [162] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1140), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [167] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1104), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -26017,102 +26535,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [163] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1174), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [168] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1137), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -26120,77 +26638,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [164] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1138), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [169] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1132), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26249,51 +26767,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [165] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1133), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [170] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1131), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26352,54 +26870,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [166] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(784), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [171] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1189), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(236), + [sym_if_let_expression] = STATE(236), + [sym_match_expression] = STATE(236), + [sym_while_expression] = STATE(236), + [sym_while_let_expression] = STATE(236), + [sym_loop_expression] = STATE(236), + [sym_for_expression] = STATE(236), + [sym_const_block] = STATE(236), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2390), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(236), + [sym_async_block] = STATE(236), + [sym_block] = STATE(236), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(638), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26420,19 +26938,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(640), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(642), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(648), + [anon_sym_match] = ACTIONS(650), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_while] = ACTIONS(654), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26455,51 +26973,51 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(963), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [172] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1016), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26558,76 +27076,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [168] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1197), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [173] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1090), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -26635,102 +27153,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [169] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1175), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), + [174] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1835), + [sym__expression] = STATE(1130), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(1099), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(72), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), + [sym_identifier] = ACTIONS(331), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(333), + [anon_sym_i8] = ACTIONS(333), + [anon_sym_u16] = ACTIONS(333), + [anon_sym_i16] = ACTIONS(333), + [anon_sym_u32] = ACTIONS(333), + [anon_sym_i32] = ACTIONS(333), + [anon_sym_u64] = ACTIONS(333), + [anon_sym_i64] = ACTIONS(333), + [anon_sym_u128] = ACTIONS(333), + [anon_sym_i128] = ACTIONS(333), + [anon_sym_isize] = ACTIONS(333), + [anon_sym_usize] = ACTIONS(333), + [anon_sym_f32] = ACTIONS(333), + [anon_sym_f64] = ACTIONS(333), + [anon_sym_bool] = ACTIONS(333), + [anon_sym_str] = ACTIONS(333), + [anon_sym_char] = ACTIONS(333), [anon_sym_SQUOTE] = ACTIONS(23), [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), + [anon_sym_break] = ACTIONS(335), [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), @@ -26738,80 +27256,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(293), [anon_sym_loop] = ACTIONS(295), [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), + [anon_sym_return] = ACTIONS(337), [anon_sym_union] = ACTIONS(289), [anon_sym_unsafe] = ACTIONS(299), [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(600), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), + [anon_sym_COLON_COLON] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_DOT_DOT] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(600), [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), + [anon_sym_move] = ACTIONS(343), [sym_integer_literal] = ACTIONS(89), [aux_sym_string_literal_token1] = ACTIONS(91), [sym_char_literal] = ACTIONS(89), [anon_sym_true] = ACTIONS(93), [anon_sym_false] = ACTIONS(93), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), + [sym_self] = ACTIONS(345), + [sym_super] = ACTIONS(347), + [sym_crate] = ACTIONS(347), + [sym_metavariable] = ACTIONS(349), [sym_raw_string_literal] = ACTIONS(89), [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [170] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1141), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [175] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1128), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(236), + [sym_if_let_expression] = STATE(236), + [sym_match_expression] = STATE(236), + [sym_while_expression] = STATE(236), + [sym_while_let_expression] = STATE(236), + [sym_loop_expression] = STATE(236), + [sym_for_expression] = STATE(236), + [sym_const_block] = STATE(236), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2390), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(236), + [sym_async_block] = STATE(236), + [sym_block] = STATE(236), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), + [anon_sym_LBRACE] = ACTIONS(638), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -26832,19 +27350,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), + [anon_sym_async] = ACTIONS(640), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), + [anon_sym_const] = ACTIONS(642), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), + [anon_sym_for] = ACTIONS(644), + [anon_sym_if] = ACTIONS(646), + [anon_sym_loop] = ACTIONS(648), + [anon_sym_match] = ACTIONS(650), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), + [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_while] = ACTIONS(654), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -26867,51 +27385,51 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [171] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1188), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [176] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1187), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -26970,54 +27488,54 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(89), [sym_block_comment] = ACTIONS(3), }, - [172] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1090), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(230), - [sym_if_let_expression] = STATE(230), - [sym_match_expression] = STATE(230), - [sym_while_expression] = STATE(230), - [sym_while_let_expression] = STATE(230), - [sym_loop_expression] = STATE(230), - [sym_for_expression] = STATE(230), - [sym_const_block] = STATE(230), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2387), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(230), - [sym_async_block] = STATE(230), - [sym_block] = STATE(230), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [177] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1142), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(279), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_STAR] = ACTIONS(19), [anon_sym_u8] = ACTIONS(21), @@ -27038,19 +27556,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(21), [anon_sym_char] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(742), + [anon_sym_async] = ACTIONS(285), [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(744), + [anon_sym_const] = ACTIONS(287), [anon_sym_continue] = ACTIONS(31), [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(746), - [anon_sym_if] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(750), - [anon_sym_match] = ACTIONS(752), + [anon_sym_for] = ACTIONS(291), + [anon_sym_if] = ACTIONS(293), + [anon_sym_loop] = ACTIONS(295), + [anon_sym_match] = ACTIONS(297), [anon_sym_return] = ACTIONS(55), [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_while] = ACTIONS(756), + [anon_sym_unsafe] = ACTIONS(299), + [anon_sym_while] = ACTIONS(301), [anon_sym_BANG] = ACTIONS(19), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(79), @@ -27073,669 +27591,154 @@ static 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(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1198), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [174] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1136), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [175] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1146), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [176] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(1110), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [177] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(1193), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(275), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(19), - [anon_sym_u8] = ACTIONS(21), - [anon_sym_i8] = ACTIONS(21), - [anon_sym_u16] = ACTIONS(21), - [anon_sym_i16] = ACTIONS(21), - [anon_sym_u32] = ACTIONS(21), - [anon_sym_i32] = ACTIONS(21), - [anon_sym_u64] = ACTIONS(21), - [anon_sym_i64] = ACTIONS(21), - [anon_sym_u128] = ACTIONS(21), - [anon_sym_i128] = ACTIONS(21), - [anon_sym_isize] = ACTIONS(21), - [anon_sym_usize] = ACTIONS(21), - [anon_sym_f32] = ACTIONS(21), - [anon_sym_f64] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(21), - [anon_sym_str] = ACTIONS(21), - [anon_sym_char] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(27), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(55), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(19), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(81), - [anon_sym_DOT_DOT] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(19), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(87), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(95), - [sym_super] = ACTIONS(97), - [sym_crate] = ACTIONS(97), - [sym_metavariable] = ACTIONS(101), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [178] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1829), - [sym__expression] = STATE(739), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(1096), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(76), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), - [sym_identifier] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(279), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_STAR] = ACTIONS(600), - [anon_sym_u8] = ACTIONS(333), - [anon_sym_i8] = ACTIONS(333), - [anon_sym_u16] = ACTIONS(333), - [anon_sym_i16] = ACTIONS(333), - [anon_sym_u32] = ACTIONS(333), - [anon_sym_i32] = ACTIONS(333), - [anon_sym_u64] = ACTIONS(333), - [anon_sym_i64] = ACTIONS(333), - [anon_sym_u128] = ACTIONS(333), - [anon_sym_i128] = ACTIONS(333), - [anon_sym_isize] = ACTIONS(333), - [anon_sym_usize] = ACTIONS(333), - [anon_sym_f32] = ACTIONS(333), - [anon_sym_f64] = ACTIONS(333), - [anon_sym_bool] = ACTIONS(333), - [anon_sym_str] = ACTIONS(333), - [anon_sym_char] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_async] = ACTIONS(285), - [anon_sym_break] = ACTIONS(335), - [anon_sym_const] = ACTIONS(287), - [anon_sym_continue] = ACTIONS(31), - [anon_sym_default] = ACTIONS(289), - [anon_sym_for] = ACTIONS(291), - [anon_sym_if] = ACTIONS(293), - [anon_sym_loop] = ACTIONS(295), - [anon_sym_match] = ACTIONS(297), - [anon_sym_return] = ACTIONS(337), - [anon_sym_union] = ACTIONS(289), - [anon_sym_unsafe] = ACTIONS(299), - [anon_sym_while] = ACTIONS(301), - [anon_sym_BANG] = ACTIONS(600), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_DOT_DOT] = ACTIONS(606), - [anon_sym_DASH] = ACTIONS(600), - [anon_sym_PIPE] = ACTIONS(85), - [anon_sym_move] = ACTIONS(343), - [sym_integer_literal] = ACTIONS(89), - [aux_sym_string_literal_token1] = ACTIONS(91), - [sym_char_literal] = ACTIONS(89), - [anon_sym_true] = ACTIONS(93), - [anon_sym_false] = ACTIONS(93), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(345), - [sym_super] = ACTIONS(347), - [sym_crate] = ACTIONS(347), - [sym_metavariable] = ACTIONS(349), - [sym_raw_string_literal] = ACTIONS(89), - [sym_float_literal] = ACTIONS(89), - [sym_block_comment] = ACTIONS(3), - }, - [179] = { - [sym_bracketed_type] = STATE(2325), - [sym_generic_function] = STATE(962), - [sym_generic_type_with_turbofish] = STATE(1781), - [sym__expression] = STATE(774), - [sym_macro_invocation] = STATE(966), - [sym_scoped_identifier] = STATE(743), - [sym_scoped_type_identifier_in_expression_position] = STATE(2083), - [sym_range_expression] = STATE(962), - [sym_unary_expression] = STATE(962), - [sym_try_expression] = STATE(962), - [sym_reference_expression] = STATE(962), - [sym_binary_expression] = STATE(962), - [sym_assignment_expression] = STATE(962), - [sym_compound_assignment_expr] = STATE(962), - [sym_type_cast_expression] = STATE(962), - [sym_return_expression] = STATE(962), - [sym_call_expression] = STATE(962), - [sym_array_expression] = STATE(962), - [sym_parenthesized_expression] = STATE(962), - [sym_tuple_expression] = STATE(962), - [sym_unit_expression] = STATE(962), - [sym_struct_expression] = STATE(962), - [sym_if_expression] = STATE(962), - [sym_if_let_expression] = STATE(962), - [sym_match_expression] = STATE(962), - [sym_while_expression] = STATE(962), - [sym_while_let_expression] = STATE(962), - [sym_loop_expression] = STATE(962), - [sym_for_expression] = STATE(962), - [sym_const_block] = STATE(962), - [sym_closure_expression] = STATE(962), - [sym_closure_parameters] = STATE(78), - [sym_loop_label] = STATE(2354), - [sym_break_expression] = STATE(962), - [sym_continue_expression] = STATE(962), - [sym_index_expression] = STATE(962), - [sym_await_expression] = STATE(962), - [sym_field_expression] = STATE(734), - [sym_unsafe_block] = STATE(962), - [sym_async_block] = STATE(962), - [sym_block] = STATE(962), - [sym__literal] = STATE(962), - [sym_string_literal] = STATE(979), - [sym_boolean_literal] = STATE(979), + [178] = { + [sym_attribute_item] = STATE(189), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1950), + [sym_variadic_parameter] = STATE(1950), + [sym_parameter] = STATE(1950), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1674), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [179] = { + [sym_bracketed_type] = STATE(2310), + [sym_generic_function] = STATE(1038), + [sym_generic_type_with_turbofish] = STATE(1805), + [sym__expression] = STATE(1157), + [sym_macro_invocation] = STATE(1049), + [sym_scoped_identifier] = STATE(824), + [sym_scoped_type_identifier_in_expression_position] = STATE(2099), + [sym_range_expression] = STATE(1038), + [sym_unary_expression] = STATE(1038), + [sym_try_expression] = STATE(1038), + [sym_reference_expression] = STATE(1038), + [sym_binary_expression] = STATE(1038), + [sym_assignment_expression] = STATE(1038), + [sym_compound_assignment_expr] = STATE(1038), + [sym_type_cast_expression] = STATE(1038), + [sym_return_expression] = STATE(1038), + [sym_call_expression] = STATE(1038), + [sym_array_expression] = STATE(1038), + [sym_parenthesized_expression] = STATE(1038), + [sym_tuple_expression] = STATE(1038), + [sym_unit_expression] = STATE(1038), + [sym_struct_expression] = STATE(1038), + [sym_if_expression] = STATE(1038), + [sym_if_let_expression] = STATE(1038), + [sym_match_expression] = STATE(1038), + [sym_while_expression] = STATE(1038), + [sym_while_let_expression] = STATE(1038), + [sym_loop_expression] = STATE(1038), + [sym_for_expression] = STATE(1038), + [sym_const_block] = STATE(1038), + [sym_closure_expression] = STATE(1038), + [sym_closure_parameters] = STATE(86), + [sym_loop_label] = STATE(2357), + [sym_break_expression] = STATE(1038), + [sym_continue_expression] = STATE(1038), + [sym_index_expression] = STATE(1038), + [sym_await_expression] = STATE(1038), + [sym_field_expression] = STATE(774), + [sym_unsafe_block] = STATE(1038), + [sym_async_block] = STATE(1038), + [sym_block] = STATE(1038), + [sym__literal] = STATE(1038), + [sym_string_literal] = STATE(1052), + [sym_boolean_literal] = STATE(1052), [sym_identifier] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(279), @@ -27795,1397 +27798,1397 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [180] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [181] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [182] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [183] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [184] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [185] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [186] = { - [sym_attribute_item] = STATE(188), - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2163), - [sym_variadic_parameter] = STATE(2163), - [sym_parameter] = STATE(2163), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1855), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(666), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_attribute_item] = STATE(187), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2006), + [sym_variadic_parameter] = STATE(2006), + [sym_parameter] = STATE(2006), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1767), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [187] = { - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1903), - [sym_variadic_parameter] = STATE(1903), - [sym_parameter] = STATE(1903), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1692), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(2011), + [sym_variadic_parameter] = STATE(2011), + [sym_parameter] = STATE(2011), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [188] = { - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(2071), - [sym_variadic_parameter] = STATE(2071), - [sym_parameter] = STATE(2071), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1844), + [sym_variadic_parameter] = STATE(1844), + [sym_parameter] = STATE(1844), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1657), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(774), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [189] = { - [sym_function_modifiers] = STATE(2240), - [sym_self_parameter] = STATE(1949), - [sym_variadic_parameter] = STATE(1949), - [sym_parameter] = STATE(1949), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1654), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(1752), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1998), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(656), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_union] = ACTIONS(664), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_self_parameter] = STATE(1967), + [sym_variadic_parameter] = STATE(1967), + [sym_parameter] = STATE(1967), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1661), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(1757), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1997), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_union] = ACTIONS(682), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), + [anon_sym_COLON_COLON] = ACTIONS(740), [anon_sym__] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(726), - [anon_sym_DOT_DOT_DOT] = ACTIONS(682), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(688), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_AMP] = ACTIONS(744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(700), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(704), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(746), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [190] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1917), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1744), [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1479), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1739), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(782), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1664), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(788), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_super] = ACTIONS(798), - [sym_crate] = ACTIONS(798), - [sym_metavariable] = ACTIONS(800), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [191] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1741), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1744), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1664), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [192] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1741), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1797), + [sym_bracketed_type] = STATE(2351), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2352), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1489), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1685), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [193] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1741), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1744), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1664), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), [anon_sym_RPAREN] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [194] = { @@ -29284,968 +29287,968 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [195] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1306), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1311), [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(542), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1357), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), + [sym_lifetime] = STATE(540), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1369), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(818), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(820), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(822), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [196] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1306), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(542), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1479), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1357), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(788), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(820), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_super] = ACTIONS(798), - [sym_crate] = ACTIONS(798), - [sym_metavariable] = ACTIONS(800), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [197] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1380), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1311), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(541), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1369), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(816), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(824), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(822), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(718), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [198] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1380), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(730), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(826), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [199] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2348), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2349), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1479), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1380), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(778), - [anon_sym_LPAREN] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2351), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2352), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1489), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(788), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(798), - [sym_super] = ACTIONS(798), - [sym_crate] = ACTIONS(798), - [sym_metavariable] = ACTIONS(800), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [200] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1380), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(826), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [201] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1306), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1357), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2348), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1366), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(828), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(830), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(828), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [202] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1306), - [sym_bracketed_type] = STATE(2342), - [sym_lifetime] = STATE(542), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1357), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1311), + [sym_bracketed_type] = STATE(2345), + [sym_lifetime] = STATE(541), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2346), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1500), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1369), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(736), + [anon_sym_i8] = ACTIONS(736), + [anon_sym_u16] = ACTIONS(736), + [anon_sym_i16] = ACTIONS(736), + [anon_sym_u32] = ACTIONS(736), + [anon_sym_i32] = ACTIONS(736), + [anon_sym_u64] = ACTIONS(736), + [anon_sym_i64] = ACTIONS(736), + [anon_sym_u128] = ACTIONS(736), + [anon_sym_i128] = ACTIONS(736), + [anon_sym_isize] = ACTIONS(736), + [anon_sym_usize] = ACTIONS(736), + [anon_sym_f32] = ACTIONS(736), + [anon_sym_f64] = ACTIONS(736), + [anon_sym_bool] = ACTIONS(736), + [anon_sym_str] = ACTIONS(736), + [anon_sym_char] = ACTIONS(736), [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(832), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(740), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(818), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(830), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(730), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(748), + [sym_super] = ACTIONS(748), + [sym_crate] = ACTIONS(748), + [sym_metavariable] = ACTIONS(750), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [203] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1306), - [sym_bracketed_type] = STATE(2342), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1311), + [sym_bracketed_type] = STATE(2348), [sym_lifetime] = STATE(540), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2343), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1508), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1357), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(718), - [anon_sym_i8] = ACTIONS(718), - [anon_sym_u16] = ACTIONS(718), - [anon_sym_i16] = ACTIONS(718), - [anon_sym_u32] = ACTIONS(718), - [anon_sym_i32] = ACTIONS(718), - [anon_sym_u64] = ACTIONS(718), - [anon_sym_i64] = ACTIONS(718), - [anon_sym_u128] = ACTIONS(718), - [anon_sym_i128] = ACTIONS(718), - [anon_sym_isize] = ACTIONS(718), - [anon_sym_usize] = ACTIONS(718), - [anon_sym_f32] = ACTIONS(718), - [anon_sym_f64] = ACTIONS(718), - [anon_sym_bool] = ACTIONS(718), - [anon_sym_str] = ACTIONS(718), - [anon_sym_char] = ACTIONS(718), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2349), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1420), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1369), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(656), + [anon_sym_LPAREN] = ACTIONS(658), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(666), + [anon_sym_i8] = ACTIONS(666), + [anon_sym_u16] = ACTIONS(666), + [anon_sym_i16] = ACTIONS(666), + [anon_sym_u32] = ACTIONS(666), + [anon_sym_i32] = ACTIONS(666), + [anon_sym_u64] = ACTIONS(666), + [anon_sym_i64] = ACTIONS(666), + [anon_sym_u128] = ACTIONS(666), + [anon_sym_i128] = ACTIONS(666), + [anon_sym_isize] = ACTIONS(666), + [anon_sym_usize] = ACTIONS(666), + [anon_sym_f32] = ACTIONS(666), + [anon_sym_f64] = ACTIONS(666), + [anon_sym_bool] = ACTIONS(666), + [anon_sym_str] = ACTIONS(666), + [anon_sym_char] = ACTIONS(666), [anon_sym_SQUOTE] = ACTIONS(816), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(722), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(834), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(694), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(784), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(832), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(836), - [sym_super] = ACTIONS(730), - [sym_crate] = ACTIONS(730), - [sym_metavariable] = ACTIONS(732), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(834), + [sym_super] = ACTIONS(718), + [sym_crate] = ACTIONS(718), + [sym_metavariable] = ACTIONS(720), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [204] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2345), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2184), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(1421), - [sym_scoped_type_identifier] = STATE(1390), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1380), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(640), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(654), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_ref] = ACTIONS(674), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1311), + [sym_bracketed_type] = STATE(2351), + [sym_lifetime] = STATE(541), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2352), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(1489), + [sym_scoped_type_identifier] = STATE(1392), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1369), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(662), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(798), + [anon_sym_i8] = ACTIONS(798), + [anon_sym_u16] = ACTIONS(798), + [anon_sym_i16] = ACTIONS(798), + [anon_sym_u32] = ACTIONS(798), + [anon_sym_i32] = ACTIONS(798), + [anon_sym_u64] = ACTIONS(798), + [anon_sym_i64] = ACTIONS(798), + [anon_sym_u128] = ACTIONS(798), + [anon_sym_i128] = ACTIONS(798), + [anon_sym_isize] = ACTIONS(798), + [anon_sym_usize] = ACTIONS(798), + [anon_sym_f32] = ACTIONS(798), + [anon_sym_f64] = ACTIONS(798), + [anon_sym_bool] = ACTIONS(798), + [anon_sym_str] = ACTIONS(798), + [anon_sym_char] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(816), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(672), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(804), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(836), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(702), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(806), + [sym_super] = ACTIONS(806), + [sym_crate] = ACTIONS(806), + [sym_metavariable] = ACTIONS(808), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [205] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), [sym__pattern] = STATE(1364), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), [sym_identifier] = ACTIONS(838), [anon_sym_LPAREN] = ACTIONS(840), [anon_sym_LBRACE] = ACTIONS(840), @@ -30283,13 +30286,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(838), [anon_sym_while] = ACTIONS(838), [anon_sym_BANG] = ACTIONS(840), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_DASH_GT] = ACTIONS(840), [anon_sym_LT] = ACTIONS(840), [anon_sym_COLON_COLON] = ACTIONS(840), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(840), - [sym_mutable_specifier] = ACTIONS(794), + [sym_mutable_specifier] = ACTIONS(786), [anon_sym_DOT_DOT] = ACTIONS(840), [anon_sym_DASH] = ACTIONS(838), [anon_sym_PIPE] = ACTIONS(840), @@ -30309,87 +30312,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [206] = { - [sym_else_clause] = STATE(235), - [sym_identifier] = ACTIONS(371), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(371), - [anon_sym_i8] = ACTIONS(371), - [anon_sym_u16] = ACTIONS(371), - [anon_sym_i16] = ACTIONS(371), - [anon_sym_u32] = ACTIONS(371), - [anon_sym_i32] = ACTIONS(371), - [anon_sym_u64] = ACTIONS(371), - [anon_sym_i64] = ACTIONS(371), - [anon_sym_u128] = ACTIONS(371), - [anon_sym_i128] = ACTIONS(371), - [anon_sym_isize] = ACTIONS(371), - [anon_sym_usize] = ACTIONS(371), - [anon_sym_f32] = ACTIONS(371), - [anon_sym_f64] = ACTIONS(371), - [anon_sym_bool] = ACTIONS(371), - [anon_sym_str] = ACTIONS(371), - [anon_sym_char] = ACTIONS(371), - [anon_sym_as] = ACTIONS(371), - [anon_sym_const] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(369), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(369), - [anon_sym_ref] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(369), - [anon_sym__] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [sym_mutable_specifier] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), + [sym_else_clause] = STATE(230), + [sym_identifier] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(371), + [anon_sym_PLUS] = ACTIONS(373), + [anon_sym_STAR] = ACTIONS(373), + [anon_sym_QMARK] = ACTIONS(371), + [anon_sym_u8] = ACTIONS(373), + [anon_sym_i8] = ACTIONS(373), + [anon_sym_u16] = ACTIONS(373), + [anon_sym_i16] = ACTIONS(373), + [anon_sym_u32] = ACTIONS(373), + [anon_sym_i32] = ACTIONS(373), + [anon_sym_u64] = ACTIONS(373), + [anon_sym_i64] = ACTIONS(373), + [anon_sym_u128] = ACTIONS(373), + [anon_sym_i128] = ACTIONS(373), + [anon_sym_isize] = ACTIONS(373), + [anon_sym_usize] = ACTIONS(373), + [anon_sym_f32] = ACTIONS(373), + [anon_sym_f64] = ACTIONS(373), + [anon_sym_bool] = ACTIONS(373), + [anon_sym_str] = ACTIONS(373), + [anon_sym_char] = ACTIONS(373), + [anon_sym_as] = ACTIONS(373), + [anon_sym_const] = ACTIONS(373), + [anon_sym_POUND] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(371), + [anon_sym_ref] = ACTIONS(373), + [anon_sym_LT] = ACTIONS(373), + [anon_sym_GT] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(371), + [anon_sym__] = ACTIONS(373), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT_EQ] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(371), + [anon_sym_PIPE_PIPE] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(373), + [anon_sym_CARET] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(371), + [anon_sym_BANG_EQ] = ACTIONS(371), + [anon_sym_LT_EQ] = ACTIONS(371), + [anon_sym_GT_EQ] = ACTIONS(371), + [anon_sym_LT_LT] = ACTIONS(373), + [anon_sym_GT_GT] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(373), + [anon_sym_PERCENT] = ACTIONS(373), + [anon_sym_PLUS_EQ] = ACTIONS(371), + [anon_sym_DASH_EQ] = ACTIONS(371), + [anon_sym_STAR_EQ] = ACTIONS(371), + [anon_sym_SLASH_EQ] = ACTIONS(371), + [anon_sym_PERCENT_EQ] = ACTIONS(371), + [anon_sym_AMP_EQ] = ACTIONS(371), + [anon_sym_PIPE_EQ] = ACTIONS(371), + [anon_sym_CARET_EQ] = ACTIONS(371), + [anon_sym_LT_LT_EQ] = ACTIONS(371), + [anon_sym_GT_GT_EQ] = ACTIONS(371), [anon_sym_else] = ACTIONS(842), - [anon_sym_DOT] = ACTIONS(371), - [sym_integer_literal] = ACTIONS(369), - [aux_sym_string_literal_token1] = ACTIONS(369), - [sym_char_literal] = ACTIONS(369), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), + [anon_sym_DOT] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(371), + [aux_sym_string_literal_token1] = ACTIONS(371), + [sym_char_literal] = ACTIONS(371), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(371), - [sym_super] = ACTIONS(371), - [sym_crate] = ACTIONS(371), - [sym_metavariable] = ACTIONS(369), - [sym_raw_string_literal] = ACTIONS(369), - [sym_float_literal] = ACTIONS(369), + [sym_self] = ACTIONS(373), + [sym_super] = ACTIONS(373), + [sym_crate] = ACTIONS(373), + [sym_metavariable] = ACTIONS(371), + [sym_raw_string_literal] = ACTIONS(371), + [sym_float_literal] = ACTIONS(371), [sym_block_comment] = ACTIONS(3), }, [207] = { - [sym_else_clause] = STATE(224), + [sym_else_clause] = STATE(240), [sym_identifier] = ACTIONS(379), [anon_sym_LPAREN] = ACTIONS(377), [anon_sym_RBRACE] = ACTIONS(377), @@ -30469,85 +30472,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [208] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(2166), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(2166), - [sym__literal] = STATE(2166), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(854), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [209] = { [sym_identifier] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_RBRACE] = ACTIONS(391), @@ -30626,39 +30550,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(391), [sym_block_comment] = ACTIONS(3), }, - [210] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(2166), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(2166), - [sym__literal] = STATE(2166), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [209] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1749), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(844), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -30676,26 +30600,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(852), [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(854), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(712), [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -30705,39 +30629,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [211] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(2166), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(2166), - [sym__literal] = STATE(2166), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [210] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1749), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(844), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -30755,26 +30679,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(852), [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(868), + [anon_sym_GT] = ACTIONS(866), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(712), [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -30784,39 +30708,39 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [212] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(2166), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(2166), - [sym__literal] = STATE(2166), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [211] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1749), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(844), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -30834,26 +30758,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(852), [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), - [anon_sym_GT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(868), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(712), [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -30863,7 +30787,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [213] = { + [212] = { [sym_identifier] = ACTIONS(389), [anon_sym_LPAREN] = ACTIONS(387), [anon_sym_RBRACE] = ACTIONS(387), @@ -30942,6 +30866,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(387), [sym_block_comment] = ACTIONS(3), }, + [213] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1749), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(860), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(860), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(860), + [sym_float_literal] = ACTIONS(860), + [sym_block_comment] = ACTIONS(3), + }, [214] = { [sym_identifier] = ACTIONS(397), [anon_sym_LPAREN] = ACTIONS(395), @@ -31022,170 +31025,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [215] = { - [sym_identifier] = ACTIONS(427), - [anon_sym_LPAREN] = ACTIONS(425), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LBRACK] = ACTIONS(425), - [anon_sym_PLUS] = ACTIONS(427), - [anon_sym_STAR] = ACTIONS(427), - [anon_sym_QMARK] = ACTIONS(425), - [anon_sym_u8] = ACTIONS(427), - [anon_sym_i8] = ACTIONS(427), - [anon_sym_u16] = ACTIONS(427), - [anon_sym_i16] = ACTIONS(427), - [anon_sym_u32] = ACTIONS(427), - [anon_sym_i32] = ACTIONS(427), - [anon_sym_u64] = ACTIONS(427), - [anon_sym_i64] = ACTIONS(427), - [anon_sym_u128] = ACTIONS(427), - [anon_sym_i128] = ACTIONS(427), - [anon_sym_isize] = ACTIONS(427), - [anon_sym_usize] = ACTIONS(427), - [anon_sym_f32] = ACTIONS(427), - [anon_sym_f64] = ACTIONS(427), - [anon_sym_bool] = ACTIONS(427), - [anon_sym_str] = ACTIONS(427), - [anon_sym_char] = ACTIONS(427), - [anon_sym_as] = ACTIONS(427), - [anon_sym_const] = ACTIONS(427), - [anon_sym_POUND] = ACTIONS(425), - [anon_sym_EQ] = ACTIONS(427), - [anon_sym_COMMA] = ACTIONS(425), - [anon_sym_ref] = ACTIONS(427), - [anon_sym_LT] = ACTIONS(427), - [anon_sym_GT] = ACTIONS(427), - [anon_sym_COLON_COLON] = ACTIONS(425), - [anon_sym__] = ACTIONS(427), - [anon_sym_AMP] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(425), - [sym_mutable_specifier] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(427), - [anon_sym_DOT_DOT_EQ] = ACTIONS(425), - [anon_sym_DASH] = ACTIONS(427), - [anon_sym_AMP_AMP] = ACTIONS(425), - [anon_sym_PIPE_PIPE] = ACTIONS(425), - [anon_sym_PIPE] = ACTIONS(427), - [anon_sym_CARET] = ACTIONS(427), - [anon_sym_EQ_EQ] = ACTIONS(425), - [anon_sym_BANG_EQ] = ACTIONS(425), - [anon_sym_LT_EQ] = ACTIONS(425), - [anon_sym_GT_EQ] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_GT_GT] = ACTIONS(427), - [anon_sym_SLASH] = ACTIONS(427), - [anon_sym_PERCENT] = ACTIONS(427), - [anon_sym_PLUS_EQ] = ACTIONS(425), - [anon_sym_DASH_EQ] = ACTIONS(425), - [anon_sym_STAR_EQ] = ACTIONS(425), - [anon_sym_SLASH_EQ] = ACTIONS(425), - [anon_sym_PERCENT_EQ] = ACTIONS(425), - [anon_sym_AMP_EQ] = ACTIONS(425), - [anon_sym_PIPE_EQ] = ACTIONS(425), - [anon_sym_CARET_EQ] = ACTIONS(425), - [anon_sym_LT_LT_EQ] = ACTIONS(425), - [anon_sym_GT_GT_EQ] = ACTIONS(425), - [anon_sym_DOT] = ACTIONS(427), - [sym_integer_literal] = ACTIONS(425), - [aux_sym_string_literal_token1] = ACTIONS(425), - [sym_char_literal] = ACTIONS(425), - [anon_sym_true] = ACTIONS(427), - [anon_sym_false] = ACTIONS(427), + [sym_identifier] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(582), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_PLUS] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(584), + [anon_sym_QMARK] = ACTIONS(582), + [anon_sym_u8] = ACTIONS(584), + [anon_sym_i8] = ACTIONS(584), + [anon_sym_u16] = ACTIONS(584), + [anon_sym_i16] = ACTIONS(584), + [anon_sym_u32] = ACTIONS(584), + [anon_sym_i32] = ACTIONS(584), + [anon_sym_u64] = ACTIONS(584), + [anon_sym_i64] = ACTIONS(584), + [anon_sym_u128] = ACTIONS(584), + [anon_sym_i128] = ACTIONS(584), + [anon_sym_isize] = ACTIONS(584), + [anon_sym_usize] = ACTIONS(584), + [anon_sym_f32] = ACTIONS(584), + [anon_sym_f64] = ACTIONS(584), + [anon_sym_bool] = ACTIONS(584), + [anon_sym_str] = ACTIONS(584), + [anon_sym_char] = ACTIONS(584), + [anon_sym_as] = ACTIONS(584), + [anon_sym_const] = ACTIONS(584), + [anon_sym_POUND] = ACTIONS(582), + [anon_sym_EQ] = ACTIONS(584), + [anon_sym_COMMA] = ACTIONS(582), + [anon_sym_ref] = ACTIONS(584), + [anon_sym_LT] = ACTIONS(584), + [anon_sym_GT] = ACTIONS(584), + [anon_sym_COLON_COLON] = ACTIONS(582), + [anon_sym__] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(582), + [sym_mutable_specifier] = ACTIONS(584), + [anon_sym_DOT_DOT] = ACTIONS(584), + [anon_sym_DOT_DOT_EQ] = ACTIONS(582), + [anon_sym_DASH] = ACTIONS(584), + [anon_sym_AMP_AMP] = ACTIONS(582), + [anon_sym_PIPE_PIPE] = ACTIONS(582), + [anon_sym_PIPE] = ACTIONS(584), + [anon_sym_CARET] = ACTIONS(584), + [anon_sym_EQ_EQ] = ACTIONS(582), + [anon_sym_BANG_EQ] = ACTIONS(582), + [anon_sym_LT_EQ] = ACTIONS(582), + [anon_sym_GT_EQ] = ACTIONS(582), + [anon_sym_LT_LT] = ACTIONS(584), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_SLASH] = ACTIONS(584), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_PLUS_EQ] = ACTIONS(582), + [anon_sym_DASH_EQ] = ACTIONS(582), + [anon_sym_STAR_EQ] = ACTIONS(582), + [anon_sym_SLASH_EQ] = ACTIONS(582), + [anon_sym_PERCENT_EQ] = ACTIONS(582), + [anon_sym_AMP_EQ] = ACTIONS(582), + [anon_sym_PIPE_EQ] = ACTIONS(582), + [anon_sym_CARET_EQ] = ACTIONS(582), + [anon_sym_LT_LT_EQ] = ACTIONS(582), + [anon_sym_GT_GT_EQ] = ACTIONS(582), + [anon_sym_DOT] = ACTIONS(584), + [sym_integer_literal] = ACTIONS(582), + [aux_sym_string_literal_token1] = ACTIONS(582), + [sym_char_literal] = ACTIONS(582), + [anon_sym_true] = ACTIONS(584), + [anon_sym_false] = ACTIONS(584), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(427), - [sym_super] = ACTIONS(427), - [sym_crate] = ACTIONS(427), - [sym_metavariable] = ACTIONS(425), - [sym_raw_string_literal] = ACTIONS(425), - [sym_float_literal] = ACTIONS(425), + [sym_self] = ACTIONS(584), + [sym_super] = ACTIONS(584), + [sym_crate] = ACTIONS(584), + [sym_metavariable] = ACTIONS(582), + [sym_raw_string_literal] = ACTIONS(582), + [sym_float_literal] = ACTIONS(582), [sym_block_comment] = ACTIONS(3), }, [216] = { - [sym_identifier] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(417), - [anon_sym_PLUS] = ACTIONS(419), - [anon_sym_STAR] = ACTIONS(419), - [anon_sym_QMARK] = ACTIONS(417), - [anon_sym_u8] = ACTIONS(419), - [anon_sym_i8] = ACTIONS(419), - [anon_sym_u16] = ACTIONS(419), - [anon_sym_i16] = ACTIONS(419), - [anon_sym_u32] = ACTIONS(419), - [anon_sym_i32] = ACTIONS(419), - [anon_sym_u64] = ACTIONS(419), - [anon_sym_i64] = ACTIONS(419), - [anon_sym_u128] = ACTIONS(419), - [anon_sym_i128] = ACTIONS(419), - [anon_sym_isize] = ACTIONS(419), - [anon_sym_usize] = ACTIONS(419), - [anon_sym_f32] = ACTIONS(419), - [anon_sym_f64] = ACTIONS(419), - [anon_sym_bool] = ACTIONS(419), - [anon_sym_str] = ACTIONS(419), - [anon_sym_char] = ACTIONS(419), - [anon_sym_as] = ACTIONS(419), - [anon_sym_const] = ACTIONS(419), - [anon_sym_POUND] = ACTIONS(417), - [anon_sym_EQ] = ACTIONS(419), - [anon_sym_COMMA] = ACTIONS(417), - [anon_sym_ref] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_COLON_COLON] = ACTIONS(417), - [anon_sym__] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(417), - [sym_mutable_specifier] = ACTIONS(419), - [anon_sym_DOT_DOT] = ACTIONS(419), - [anon_sym_DOT_DOT_EQ] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_CARET] = ACTIONS(419), - [anon_sym_EQ_EQ] = ACTIONS(417), - [anon_sym_BANG_EQ] = ACTIONS(417), - [anon_sym_LT_EQ] = ACTIONS(417), - [anon_sym_GT_EQ] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_SLASH] = ACTIONS(419), - [anon_sym_PERCENT] = ACTIONS(419), - [anon_sym_PLUS_EQ] = ACTIONS(417), - [anon_sym_DASH_EQ] = ACTIONS(417), - [anon_sym_STAR_EQ] = ACTIONS(417), - [anon_sym_SLASH_EQ] = ACTIONS(417), - [anon_sym_PERCENT_EQ] = ACTIONS(417), - [anon_sym_AMP_EQ] = ACTIONS(417), - [anon_sym_PIPE_EQ] = ACTIONS(417), - [anon_sym_CARET_EQ] = ACTIONS(417), - [anon_sym_LT_LT_EQ] = ACTIONS(417), - [anon_sym_GT_GT_EQ] = ACTIONS(417), - [anon_sym_DOT] = ACTIONS(419), - [sym_integer_literal] = ACTIONS(417), - [aux_sym_string_literal_token1] = ACTIONS(417), - [sym_char_literal] = ACTIONS(417), - [anon_sym_true] = ACTIONS(419), - [anon_sym_false] = ACTIONS(419), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(419), - [sym_super] = ACTIONS(419), - [sym_crate] = ACTIONS(419), - [sym_metavariable] = ACTIONS(417), - [sym_raw_string_literal] = ACTIONS(417), - [sym_float_literal] = ACTIONS(417), - [sym_block_comment] = ACTIONS(3), - }, - [217] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), [sym_identifier] = ACTIONS(872), [anon_sym_LPAREN] = ACTIONS(875), [anon_sym_RPAREN] = ACTIONS(878), @@ -31255,36 +31180,114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(889), [sym_block_comment] = ACTIONS(3), }, + [217] = { + [sym_identifier] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_PLUS] = ACTIONS(429), + [anon_sym_STAR] = ACTIONS(429), + [anon_sym_QMARK] = ACTIONS(427), + [anon_sym_u8] = ACTIONS(429), + [anon_sym_i8] = ACTIONS(429), + [anon_sym_u16] = ACTIONS(429), + [anon_sym_i16] = ACTIONS(429), + [anon_sym_u32] = ACTIONS(429), + [anon_sym_i32] = ACTIONS(429), + [anon_sym_u64] = ACTIONS(429), + [anon_sym_i64] = ACTIONS(429), + [anon_sym_u128] = ACTIONS(429), + [anon_sym_i128] = ACTIONS(429), + [anon_sym_isize] = ACTIONS(429), + [anon_sym_usize] = ACTIONS(429), + [anon_sym_f32] = ACTIONS(429), + [anon_sym_f64] = ACTIONS(429), + [anon_sym_bool] = ACTIONS(429), + [anon_sym_str] = ACTIONS(429), + [anon_sym_char] = ACTIONS(429), + [anon_sym_as] = ACTIONS(429), + [anon_sym_const] = ACTIONS(429), + [anon_sym_POUND] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_COMMA] = ACTIONS(427), + [anon_sym_ref] = ACTIONS(429), + [anon_sym_LT] = ACTIONS(429), + [anon_sym_GT] = ACTIONS(429), + [anon_sym_COLON_COLON] = ACTIONS(427), + [anon_sym__] = ACTIONS(429), + [anon_sym_AMP] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(427), + [sym_mutable_specifier] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(427), + [anon_sym_DASH] = ACTIONS(429), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_PIPE] = ACTIONS(429), + [anon_sym_CARET] = ACTIONS(429), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_LT_LT] = ACTIONS(429), + [anon_sym_GT_GT] = ACTIONS(429), + [anon_sym_SLASH] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(429), + [anon_sym_PLUS_EQ] = ACTIONS(427), + [anon_sym_DASH_EQ] = ACTIONS(427), + [anon_sym_STAR_EQ] = ACTIONS(427), + [anon_sym_SLASH_EQ] = ACTIONS(427), + [anon_sym_PERCENT_EQ] = ACTIONS(427), + [anon_sym_AMP_EQ] = ACTIONS(427), + [anon_sym_PIPE_EQ] = ACTIONS(427), + [anon_sym_CARET_EQ] = ACTIONS(427), + [anon_sym_LT_LT_EQ] = ACTIONS(427), + [anon_sym_GT_GT_EQ] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(429), + [sym_integer_literal] = ACTIONS(427), + [aux_sym_string_literal_token1] = ACTIONS(427), + [sym_char_literal] = ACTIONS(427), + [anon_sym_true] = ACTIONS(429), + [anon_sym_false] = ACTIONS(429), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(429), + [sym_super] = ACTIONS(429), + [sym_crate] = ACTIONS(429), + [sym_metavariable] = ACTIONS(427), + [sym_raw_string_literal] = ACTIONS(427), + [sym_float_literal] = ACTIONS(427), + [sym_block_comment] = ACTIONS(3), + }, [218] = { - [sym_empty_statement] = STATE(219), - [sym_macro_definition] = STATE(219), - [sym_attribute_item] = STATE(219), - [sym_inner_attribute_item] = STATE(219), - [sym_mod_item] = STATE(219), - [sym_foreign_mod_item] = STATE(219), - [sym_struct_item] = STATE(219), - [sym_union_item] = STATE(219), - [sym_enum_item] = STATE(219), - [sym_extern_crate_declaration] = STATE(219), - [sym_const_item] = STATE(219), - [sym_static_item] = STATE(219), - [sym_type_item] = STATE(219), - [sym_function_item] = STATE(219), - [sym_function_signature_item] = STATE(219), - [sym_function_modifiers] = STATE(2396), - [sym_impl_item] = STATE(219), - [sym_trait_item] = STATE(219), - [sym_associated_type] = STATE(219), - [sym_let_declaration] = STATE(219), - [sym_use_declaration] = STATE(219), - [sym_extern_modifier] = STATE(1420), - [sym_visibility_modifier] = STATE(1255), - [sym_bracketed_type] = STATE(2224), - [sym_generic_type_with_turbofish] = STATE(2226), - [sym_macro_invocation] = STATE(219), - [sym_scoped_identifier] = STATE(2162), - [aux_sym_declaration_list_repeat1] = STATE(219), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym_empty_statement] = STATE(226), + [sym_macro_definition] = STATE(226), + [sym_attribute_item] = STATE(226), + [sym_inner_attribute_item] = STATE(226), + [sym_mod_item] = STATE(226), + [sym_foreign_mod_item] = STATE(226), + [sym_struct_item] = STATE(226), + [sym_union_item] = STATE(226), + [sym_enum_item] = STATE(226), + [sym_extern_crate_declaration] = STATE(226), + [sym_const_item] = STATE(226), + [sym_static_item] = STATE(226), + [sym_type_item] = STATE(226), + [sym_function_item] = STATE(226), + [sym_function_signature_item] = STATE(226), + [sym_function_modifiers] = STATE(2399), + [sym_impl_item] = STATE(226), + [sym_trait_item] = STATE(226), + [sym_associated_type] = STATE(226), + [sym_let_declaration] = STATE(226), + [sym_use_declaration] = STATE(226), + [sym_extern_modifier] = STATE(1436), + [sym_visibility_modifier] = STATE(1261), + [sym_bracketed_type] = STATE(2237), + [sym_generic_type_with_turbofish] = STATE(2403), + [sym_macro_invocation] = STATE(226), + [sym_scoped_identifier] = STATE(2024), + [aux_sym_declaration_list_repeat1] = STATE(226), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(903), [anon_sym_SEMI] = ACTIONS(905), [anon_sym_macro_rules_BANG] = ACTIONS(907), @@ -31306,9 +31309,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(911), [anon_sym_str] = ACTIONS(911), [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(652), + [anon_sym_async] = ACTIONS(670), [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(652), + [anon_sym_default] = ACTIONS(670), [anon_sym_enum] = ACTIONS(915), [anon_sym_fn] = ACTIONS(917), [anon_sym_impl] = ACTIONS(919), @@ -31334,116 +31337,272 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [219] = { - [sym_empty_statement] = STATE(240), - [sym_macro_definition] = STATE(240), - [sym_attribute_item] = STATE(240), - [sym_inner_attribute_item] = STATE(240), - [sym_mod_item] = STATE(240), - [sym_foreign_mod_item] = STATE(240), - [sym_struct_item] = STATE(240), - [sym_union_item] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_extern_crate_declaration] = STATE(240), - [sym_const_item] = STATE(240), - [sym_static_item] = STATE(240), - [sym_type_item] = STATE(240), - [sym_function_item] = STATE(240), - [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2396), - [sym_impl_item] = STATE(240), - [sym_trait_item] = STATE(240), - [sym_associated_type] = STATE(240), - [sym_let_declaration] = STATE(240), - [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1420), - [sym_visibility_modifier] = STATE(1255), - [sym_bracketed_type] = STATE(2224), - [sym_generic_type_with_turbofish] = STATE(2226), - [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2162), - [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_u8] = ACTIONS(911), - [anon_sym_i8] = ACTIONS(911), - [anon_sym_u16] = ACTIONS(911), - [anon_sym_i16] = ACTIONS(911), - [anon_sym_u32] = ACTIONS(911), - [anon_sym_i32] = ACTIONS(911), - [anon_sym_u64] = ACTIONS(911), - [anon_sym_i64] = ACTIONS(911), - [anon_sym_u128] = ACTIONS(911), - [anon_sym_i128] = ACTIONS(911), - [anon_sym_isize] = ACTIONS(911), - [anon_sym_usize] = ACTIONS(911), - [anon_sym_f32] = ACTIONS(911), - [anon_sym_f64] = ACTIONS(911), - [anon_sym_bool] = ACTIONS(911), - [anon_sym_str] = ACTIONS(911), - [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(652), - [anon_sym_enum] = ACTIONS(915), - [anon_sym_fn] = ACTIONS(917), - [anon_sym_impl] = ACTIONS(919), - [anon_sym_let] = ACTIONS(921), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(53), - [anon_sym_static] = ACTIONS(925), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(929), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(933), - [anon_sym_unsafe] = ACTIONS(935), - [anon_sym_use] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(943), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(405), + [anon_sym_i8] = ACTIONS(405), + [anon_sym_u16] = ACTIONS(405), + [anon_sym_i16] = ACTIONS(405), + [anon_sym_u32] = ACTIONS(405), + [anon_sym_i32] = ACTIONS(405), + [anon_sym_u64] = ACTIONS(405), + [anon_sym_i64] = ACTIONS(405), + [anon_sym_u128] = ACTIONS(405), + [anon_sym_i128] = ACTIONS(405), + [anon_sym_isize] = ACTIONS(405), + [anon_sym_usize] = ACTIONS(405), + [anon_sym_f32] = ACTIONS(405), + [anon_sym_f64] = ACTIONS(405), + [anon_sym_bool] = ACTIONS(405), + [anon_sym_str] = ACTIONS(405), + [anon_sym_char] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_const] = ACTIONS(405), + [anon_sym_POUND] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_COMMA] = ACTIONS(403), + [anon_sym_ref] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_COLON_COLON] = ACTIONS(403), + [anon_sym__] = ACTIONS(405), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [sym_mutable_specifier] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [sym_integer_literal] = ACTIONS(403), + [aux_sym_string_literal_token1] = ACTIONS(403), + [sym_char_literal] = ACTIONS(403), + [anon_sym_true] = ACTIONS(405), + [anon_sym_false] = ACTIONS(405), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(947), - [sym_metavariable] = ACTIONS(949), + [sym_self] = ACTIONS(405), + [sym_super] = ACTIONS(405), + [sym_crate] = ACTIONS(405), + [sym_metavariable] = ACTIONS(403), + [sym_raw_string_literal] = ACTIONS(403), + [sym_float_literal] = ACTIONS(403), [sym_block_comment] = ACTIONS(3), }, [220] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1700), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1655), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(1787), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(1787), - [sym__literal] = STATE(1787), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym_identifier] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_u8] = ACTIONS(564), + [anon_sym_i8] = ACTIONS(564), + [anon_sym_u16] = ACTIONS(564), + [anon_sym_i16] = ACTIONS(564), + [anon_sym_u32] = ACTIONS(564), + [anon_sym_i32] = ACTIONS(564), + [anon_sym_u64] = ACTIONS(564), + [anon_sym_i64] = ACTIONS(564), + [anon_sym_u128] = ACTIONS(564), + [anon_sym_i128] = ACTIONS(564), + [anon_sym_isize] = ACTIONS(564), + [anon_sym_usize] = ACTIONS(564), + [anon_sym_f32] = ACTIONS(564), + [anon_sym_f64] = ACTIONS(564), + [anon_sym_bool] = ACTIONS(564), + [anon_sym_str] = ACTIONS(564), + [anon_sym_char] = ACTIONS(564), + [anon_sym_as] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_ref] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_COLON_COLON] = ACTIONS(562), + [anon_sym__] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [sym_mutable_specifier] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_EQ] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [sym_integer_literal] = ACTIONS(562), + [aux_sym_string_literal_token1] = ACTIONS(562), + [sym_char_literal] = ACTIONS(562), + [anon_sym_true] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(564), + [sym_super] = ACTIONS(564), + [sym_crate] = ACTIONS(564), + [sym_metavariable] = ACTIONS(562), + [sym_raw_string_literal] = ACTIONS(562), + [sym_float_literal] = ACTIONS(562), + [sym_block_comment] = ACTIONS(3), + }, + [221] = { + [sym_identifier] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(576), + [anon_sym_i8] = ACTIONS(576), + [anon_sym_u16] = ACTIONS(576), + [anon_sym_i16] = ACTIONS(576), + [anon_sym_u32] = ACTIONS(576), + [anon_sym_i32] = ACTIONS(576), + [anon_sym_u64] = ACTIONS(576), + [anon_sym_i64] = ACTIONS(576), + [anon_sym_u128] = ACTIONS(576), + [anon_sym_i128] = ACTIONS(576), + [anon_sym_isize] = ACTIONS(576), + [anon_sym_usize] = ACTIONS(576), + [anon_sym_f32] = ACTIONS(576), + [anon_sym_f64] = ACTIONS(576), + [anon_sym_bool] = ACTIONS(576), + [anon_sym_str] = ACTIONS(576), + [anon_sym_char] = ACTIONS(576), + [anon_sym_as] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(574), + [anon_sym_ref] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(574), + [anon_sym__] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(576), + [anon_sym_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(574), + [anon_sym_PIPE_PIPE] = ACTIONS(574), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_EQ_EQ] = ACTIONS(574), + [anon_sym_BANG_EQ] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(574), + [anon_sym_LT_LT] = ACTIONS(576), + [anon_sym_GT_GT] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(574), + [anon_sym_STAR_EQ] = ACTIONS(574), + [anon_sym_SLASH_EQ] = ACTIONS(574), + [anon_sym_PERCENT_EQ] = ACTIONS(574), + [anon_sym_AMP_EQ] = ACTIONS(574), + [anon_sym_PIPE_EQ] = ACTIONS(574), + [anon_sym_CARET_EQ] = ACTIONS(574), + [anon_sym_LT_LT_EQ] = ACTIONS(574), + [anon_sym_GT_GT_EQ] = ACTIONS(574), + [anon_sym_DOT] = ACTIONS(576), + [sym_integer_literal] = ACTIONS(574), + [aux_sym_string_literal_token1] = ACTIONS(574), + [sym_char_literal] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(576), + [sym_super] = ACTIONS(576), + [sym_crate] = ACTIONS(576), + [sym_metavariable] = ACTIONS(574), + [sym_raw_string_literal] = ACTIONS(574), + [sym_float_literal] = ACTIONS(574), + [sym_block_comment] = ACTIONS(3), + }, + [222] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1726), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1722), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(1843), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(1843), + [sym__literal] = STATE(1843), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(844), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -31461,25 +31620,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(852), [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(712), [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -31489,163 +31648,475 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [221] = { - [sym_identifier] = ACTIONS(574), - [anon_sym_LPAREN] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(574), - [anon_sym_STAR] = ACTIONS(574), - [anon_sym_QMARK] = ACTIONS(572), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_POUND] = ACTIONS(572), - [anon_sym_EQ] = ACTIONS(574), - [anon_sym_COMMA] = ACTIONS(572), - [anon_sym_ref] = ACTIONS(574), - [anon_sym_LT] = ACTIONS(574), - [anon_sym_GT] = ACTIONS(574), - [anon_sym_COLON_COLON] = ACTIONS(572), - [anon_sym__] = ACTIONS(574), - [anon_sym_AMP] = ACTIONS(574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(572), - [sym_mutable_specifier] = ACTIONS(574), - [anon_sym_DOT_DOT] = ACTIONS(574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(574), - [anon_sym_AMP_AMP] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(574), - [anon_sym_CARET] = ACTIONS(574), - [anon_sym_EQ_EQ] = ACTIONS(572), - [anon_sym_BANG_EQ] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(572), - [anon_sym_GT_EQ] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(574), - [anon_sym_GT_GT] = ACTIONS(574), - [anon_sym_SLASH] = ACTIONS(574), - [anon_sym_PERCENT] = ACTIONS(574), - [anon_sym_PLUS_EQ] = ACTIONS(572), - [anon_sym_DASH_EQ] = ACTIONS(572), - [anon_sym_STAR_EQ] = ACTIONS(572), - [anon_sym_SLASH_EQ] = ACTIONS(572), - [anon_sym_PERCENT_EQ] = ACTIONS(572), - [anon_sym_AMP_EQ] = ACTIONS(572), - [anon_sym_PIPE_EQ] = ACTIONS(572), - [anon_sym_CARET_EQ] = ACTIONS(572), - [anon_sym_LT_LT_EQ] = ACTIONS(572), - [anon_sym_GT_GT_EQ] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(572), - [aux_sym_string_literal_token1] = ACTIONS(572), - [sym_char_literal] = ACTIONS(572), - [anon_sym_true] = ACTIONS(574), - [anon_sym_false] = ACTIONS(574), + [223] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1749), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(2125), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(2125), + [sym__literal] = STATE(2125), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(848), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(860), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(860), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(572), - [sym_raw_string_literal] = ACTIONS(572), - [sym_float_literal] = ACTIONS(572), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(860), + [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [222] = { - [sym_identifier] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(568), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(570), - [anon_sym_STAR] = ACTIONS(570), - [anon_sym_QMARK] = ACTIONS(568), - [anon_sym_u8] = ACTIONS(570), - [anon_sym_i8] = ACTIONS(570), - [anon_sym_u16] = ACTIONS(570), - [anon_sym_i16] = ACTIONS(570), - [anon_sym_u32] = ACTIONS(570), - [anon_sym_i32] = ACTIONS(570), - [anon_sym_u64] = ACTIONS(570), - [anon_sym_i64] = ACTIONS(570), - [anon_sym_u128] = ACTIONS(570), - [anon_sym_i128] = ACTIONS(570), - [anon_sym_isize] = ACTIONS(570), - [anon_sym_usize] = ACTIONS(570), - [anon_sym_f32] = ACTIONS(570), - [anon_sym_f64] = ACTIONS(570), - [anon_sym_bool] = ACTIONS(570), - [anon_sym_str] = ACTIONS(570), - [anon_sym_char] = ACTIONS(570), - [anon_sym_as] = ACTIONS(570), - [anon_sym_const] = ACTIONS(570), - [anon_sym_POUND] = ACTIONS(568), - [anon_sym_EQ] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(568), - [anon_sym_ref] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(570), - [anon_sym_GT] = ACTIONS(570), - [anon_sym_COLON_COLON] = ACTIONS(568), - [anon_sym__] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(568), - [sym_mutable_specifier] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_DOT_EQ] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(570), - [anon_sym_AMP_AMP] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(568), - [anon_sym_BANG_EQ] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(568), - [anon_sym_GT_EQ] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(570), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(570), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(568), - [anon_sym_DASH_EQ] = ACTIONS(568), - [anon_sym_STAR_EQ] = ACTIONS(568), - [anon_sym_SLASH_EQ] = ACTIONS(568), - [anon_sym_PERCENT_EQ] = ACTIONS(568), - [anon_sym_AMP_EQ] = ACTIONS(568), - [anon_sym_PIPE_EQ] = ACTIONS(568), - [anon_sym_CARET_EQ] = ACTIONS(568), - [anon_sym_LT_LT_EQ] = ACTIONS(568), - [anon_sym_GT_GT_EQ] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(570), - [sym_integer_literal] = ACTIONS(568), - [aux_sym_string_literal_token1] = ACTIONS(568), - [sym_char_literal] = ACTIONS(568), - [anon_sym_true] = ACTIONS(570), - [anon_sym_false] = ACTIONS(570), + [224] = { + [sym_identifier] = ACTIONS(421), + [anon_sym_LPAREN] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_QMARK] = ACTIONS(419), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_as] = ACTIONS(421), + [anon_sym_const] = ACTIONS(421), + [anon_sym_POUND] = ACTIONS(419), + [anon_sym_EQ] = ACTIONS(421), + [anon_sym_COMMA] = ACTIONS(419), + [anon_sym_ref] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_COLON_COLON] = ACTIONS(419), + [anon_sym__] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(419), + [sym_mutable_specifier] = ACTIONS(421), + [anon_sym_DOT_DOT] = ACTIONS(421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(419), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(419), + [anon_sym_PIPE_PIPE] = ACTIONS(419), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_CARET] = ACTIONS(421), + [anon_sym_EQ_EQ] = ACTIONS(419), + [anon_sym_BANG_EQ] = ACTIONS(419), + [anon_sym_LT_EQ] = ACTIONS(419), + [anon_sym_GT_EQ] = ACTIONS(419), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_SLASH] = ACTIONS(421), + [anon_sym_PERCENT] = ACTIONS(421), + [anon_sym_PLUS_EQ] = ACTIONS(419), + [anon_sym_DASH_EQ] = ACTIONS(419), + [anon_sym_STAR_EQ] = ACTIONS(419), + [anon_sym_SLASH_EQ] = ACTIONS(419), + [anon_sym_PERCENT_EQ] = ACTIONS(419), + [anon_sym_AMP_EQ] = ACTIONS(419), + [anon_sym_PIPE_EQ] = ACTIONS(419), + [anon_sym_CARET_EQ] = ACTIONS(419), + [anon_sym_LT_LT_EQ] = ACTIONS(419), + [anon_sym_GT_GT_EQ] = ACTIONS(419), + [anon_sym_DOT] = ACTIONS(421), + [sym_integer_literal] = ACTIONS(419), + [aux_sym_string_literal_token1] = ACTIONS(419), + [sym_char_literal] = ACTIONS(419), + [anon_sym_true] = ACTIONS(421), + [anon_sym_false] = ACTIONS(421), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(570), - [sym_super] = ACTIONS(570), - [sym_crate] = ACTIONS(570), - [sym_metavariable] = ACTIONS(568), - [sym_raw_string_literal] = ACTIONS(568), - [sym_float_literal] = ACTIONS(568), + [sym_self] = ACTIONS(421), + [sym_super] = ACTIONS(421), + [sym_crate] = ACTIONS(421), + [sym_metavariable] = ACTIONS(419), + [sym_raw_string_literal] = ACTIONS(419), + [sym_float_literal] = ACTIONS(419), [sym_block_comment] = ACTIONS(3), }, - [223] = { + [225] = { + [sym_identifier] = ACTIONS(598), + [anon_sym_LPAREN] = ACTIONS(596), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_LBRACK] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(598), + [anon_sym_STAR] = ACTIONS(598), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(598), + [anon_sym_i8] = ACTIONS(598), + [anon_sym_u16] = ACTIONS(598), + [anon_sym_i16] = ACTIONS(598), + [anon_sym_u32] = ACTIONS(598), + [anon_sym_i32] = ACTIONS(598), + [anon_sym_u64] = ACTIONS(598), + [anon_sym_i64] = ACTIONS(598), + [anon_sym_u128] = ACTIONS(598), + [anon_sym_i128] = ACTIONS(598), + [anon_sym_isize] = ACTIONS(598), + [anon_sym_usize] = ACTIONS(598), + [anon_sym_f32] = ACTIONS(598), + [anon_sym_f64] = ACTIONS(598), + [anon_sym_bool] = ACTIONS(598), + [anon_sym_str] = ACTIONS(598), + [anon_sym_char] = ACTIONS(598), + [anon_sym_as] = ACTIONS(598), + [anon_sym_const] = ACTIONS(598), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(598), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_ref] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym__] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [sym_mutable_specifier] = ACTIONS(598), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(598), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_CARET] = ACTIONS(598), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(598), + [anon_sym_SLASH] = ACTIONS(598), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_DOT] = ACTIONS(598), + [sym_integer_literal] = ACTIONS(596), + [aux_sym_string_literal_token1] = ACTIONS(596), + [sym_char_literal] = ACTIONS(596), + [anon_sym_true] = ACTIONS(598), + [anon_sym_false] = ACTIONS(598), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(598), + [sym_super] = ACTIONS(598), + [sym_crate] = ACTIONS(598), + [sym_metavariable] = ACTIONS(596), + [sym_raw_string_literal] = ACTIONS(596), + [sym_float_literal] = ACTIONS(596), + [sym_block_comment] = ACTIONS(3), + }, + [226] = { + [sym_empty_statement] = STATE(226), + [sym_macro_definition] = STATE(226), + [sym_attribute_item] = STATE(226), + [sym_inner_attribute_item] = STATE(226), + [sym_mod_item] = STATE(226), + [sym_foreign_mod_item] = STATE(226), + [sym_struct_item] = STATE(226), + [sym_union_item] = STATE(226), + [sym_enum_item] = STATE(226), + [sym_extern_crate_declaration] = STATE(226), + [sym_const_item] = STATE(226), + [sym_static_item] = STATE(226), + [sym_type_item] = STATE(226), + [sym_function_item] = STATE(226), + [sym_function_signature_item] = STATE(226), + [sym_function_modifiers] = STATE(2399), + [sym_impl_item] = STATE(226), + [sym_trait_item] = STATE(226), + [sym_associated_type] = STATE(226), + [sym_let_declaration] = STATE(226), + [sym_use_declaration] = STATE(226), + [sym_extern_modifier] = STATE(1436), + [sym_visibility_modifier] = STATE(1261), + [sym_bracketed_type] = STATE(2237), + [sym_generic_type_with_turbofish] = STATE(2403), + [sym_macro_invocation] = STATE(226), + [sym_scoped_identifier] = STATE(2024), + [aux_sym_declaration_list_repeat1] = STATE(226), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_macro_rules_BANG] = ACTIONS(957), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_u8] = ACTIONS(962), + [anon_sym_i8] = ACTIONS(962), + [anon_sym_u16] = ACTIONS(962), + [anon_sym_i16] = ACTIONS(962), + [anon_sym_u32] = ACTIONS(962), + [anon_sym_i32] = ACTIONS(962), + [anon_sym_u64] = ACTIONS(962), + [anon_sym_i64] = ACTIONS(962), + [anon_sym_u128] = ACTIONS(962), + [anon_sym_i128] = ACTIONS(962), + [anon_sym_isize] = ACTIONS(962), + [anon_sym_usize] = ACTIONS(962), + [anon_sym_f32] = ACTIONS(962), + [anon_sym_f64] = ACTIONS(962), + [anon_sym_bool] = ACTIONS(962), + [anon_sym_str] = ACTIONS(962), + [anon_sym_char] = ACTIONS(962), + [anon_sym_async] = ACTIONS(965), + [anon_sym_const] = ACTIONS(968), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(971), + [anon_sym_fn] = ACTIONS(974), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(983), + [anon_sym_pub] = ACTIONS(986), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_trait] = ACTIONS(995), + [anon_sym_type] = ACTIONS(998), + [anon_sym_union] = ACTIONS(1001), + [anon_sym_unsafe] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1007), + [anon_sym_POUND] = ACTIONS(1010), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_COLON_COLON] = ACTIONS(1019), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1022), + [sym_super] = ACTIONS(1022), + [sym_crate] = ACTIONS(1025), + [sym_metavariable] = ACTIONS(1028), + [sym_block_comment] = ACTIONS(3), + }, + [227] = { + [sym_identifier] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(445), + [anon_sym_RBRACE] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(447), + [anon_sym_QMARK] = ACTIONS(445), + [anon_sym_u8] = ACTIONS(447), + [anon_sym_i8] = ACTIONS(447), + [anon_sym_u16] = ACTIONS(447), + [anon_sym_i16] = ACTIONS(447), + [anon_sym_u32] = ACTIONS(447), + [anon_sym_i32] = ACTIONS(447), + [anon_sym_u64] = ACTIONS(447), + [anon_sym_i64] = ACTIONS(447), + [anon_sym_u128] = ACTIONS(447), + [anon_sym_i128] = ACTIONS(447), + [anon_sym_isize] = ACTIONS(447), + [anon_sym_usize] = ACTIONS(447), + [anon_sym_f32] = ACTIONS(447), + [anon_sym_f64] = ACTIONS(447), + [anon_sym_bool] = ACTIONS(447), + [anon_sym_str] = ACTIONS(447), + [anon_sym_char] = ACTIONS(447), + [anon_sym_as] = ACTIONS(447), + [anon_sym_const] = ACTIONS(447), + [anon_sym_POUND] = ACTIONS(445), + [anon_sym_EQ] = ACTIONS(447), + [anon_sym_COMMA] = ACTIONS(445), + [anon_sym_ref] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(447), + [anon_sym_GT] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(445), + [anon_sym__] = ACTIONS(447), + [anon_sym_AMP] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(445), + [sym_mutable_specifier] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(445), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(445), + [anon_sym_PIPE_PIPE] = ACTIONS(445), + [anon_sym_PIPE] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_EQ_EQ] = ACTIONS(445), + [anon_sym_BANG_EQ] = ACTIONS(445), + [anon_sym_LT_EQ] = ACTIONS(445), + [anon_sym_GT_EQ] = ACTIONS(445), + [anon_sym_LT_LT] = ACTIONS(447), + [anon_sym_GT_GT] = ACTIONS(447), + [anon_sym_SLASH] = ACTIONS(447), + [anon_sym_PERCENT] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(445), + [anon_sym_DASH_EQ] = ACTIONS(445), + [anon_sym_STAR_EQ] = ACTIONS(445), + [anon_sym_SLASH_EQ] = ACTIONS(445), + [anon_sym_PERCENT_EQ] = ACTIONS(445), + [anon_sym_AMP_EQ] = ACTIONS(445), + [anon_sym_PIPE_EQ] = ACTIONS(445), + [anon_sym_CARET_EQ] = ACTIONS(445), + [anon_sym_LT_LT_EQ] = ACTIONS(445), + [anon_sym_GT_GT_EQ] = ACTIONS(445), + [anon_sym_DOT] = ACTIONS(447), + [sym_integer_literal] = ACTIONS(445), + [aux_sym_string_literal_token1] = ACTIONS(445), + [sym_char_literal] = ACTIONS(445), + [anon_sym_true] = ACTIONS(447), + [anon_sym_false] = ACTIONS(447), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(447), + [sym_super] = ACTIONS(447), + [sym_crate] = ACTIONS(447), + [sym_metavariable] = ACTIONS(445), + [sym_raw_string_literal] = ACTIONS(445), + [sym_float_literal] = ACTIONS(445), + [sym_block_comment] = ACTIONS(3), + }, + [228] = { + [sym_empty_statement] = STATE(218), + [sym_macro_definition] = STATE(218), + [sym_attribute_item] = STATE(218), + [sym_inner_attribute_item] = STATE(218), + [sym_mod_item] = STATE(218), + [sym_foreign_mod_item] = STATE(218), + [sym_struct_item] = STATE(218), + [sym_union_item] = STATE(218), + [sym_enum_item] = STATE(218), + [sym_extern_crate_declaration] = STATE(218), + [sym_const_item] = STATE(218), + [sym_static_item] = STATE(218), + [sym_type_item] = STATE(218), + [sym_function_item] = STATE(218), + [sym_function_signature_item] = STATE(218), + [sym_function_modifiers] = STATE(2399), + [sym_impl_item] = STATE(218), + [sym_trait_item] = STATE(218), + [sym_associated_type] = STATE(218), + [sym_let_declaration] = STATE(218), + [sym_use_declaration] = STATE(218), + [sym_extern_modifier] = STATE(1436), + [sym_visibility_modifier] = STATE(1261), + [sym_bracketed_type] = STATE(2237), + [sym_generic_type_with_turbofish] = STATE(2403), + [sym_macro_invocation] = STATE(218), + [sym_scoped_identifier] = STATE(2024), + [aux_sym_declaration_list_repeat1] = STATE(218), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_macro_rules_BANG] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(911), + [anon_sym_i8] = ACTIONS(911), + [anon_sym_u16] = ACTIONS(911), + [anon_sym_i16] = ACTIONS(911), + [anon_sym_u32] = ACTIONS(911), + [anon_sym_i32] = ACTIONS(911), + [anon_sym_u64] = ACTIONS(911), + [anon_sym_i64] = ACTIONS(911), + [anon_sym_u128] = ACTIONS(911), + [anon_sym_i128] = ACTIONS(911), + [anon_sym_isize] = ACTIONS(911), + [anon_sym_usize] = ACTIONS(911), + [anon_sym_f32] = ACTIONS(911), + [anon_sym_f64] = ACTIONS(911), + [anon_sym_bool] = ACTIONS(911), + [anon_sym_str] = ACTIONS(911), + [anon_sym_char] = ACTIONS(911), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(913), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(917), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_pub] = ACTIONS(53), + [anon_sym_static] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_trait] = ACTIONS(929), + [anon_sym_type] = ACTIONS(931), + [anon_sym_union] = ACTIONS(933), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(943), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(945), + [sym_super] = ACTIONS(945), + [sym_crate] = ACTIONS(947), + [sym_metavariable] = ACTIONS(949), + [sym_block_comment] = ACTIONS(3), + }, + [229] = { [sym_identifier] = ACTIONS(594), [anon_sym_LPAREN] = ACTIONS(592), [anon_sym_RBRACE] = ACTIONS(592), @@ -31723,117 +32194,117 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(592), [sym_block_comment] = ACTIONS(3), }, - [224] = { - [sym_identifier] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(433), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_PLUS] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(435), - [anon_sym_QMARK] = ACTIONS(433), - [anon_sym_u8] = ACTIONS(435), - [anon_sym_i8] = ACTIONS(435), - [anon_sym_u16] = ACTIONS(435), - [anon_sym_i16] = ACTIONS(435), - [anon_sym_u32] = ACTIONS(435), - [anon_sym_i32] = ACTIONS(435), - [anon_sym_u64] = ACTIONS(435), - [anon_sym_i64] = ACTIONS(435), - [anon_sym_u128] = ACTIONS(435), - [anon_sym_i128] = ACTIONS(435), - [anon_sym_isize] = ACTIONS(435), - [anon_sym_usize] = ACTIONS(435), - [anon_sym_f32] = ACTIONS(435), - [anon_sym_f64] = ACTIONS(435), - [anon_sym_bool] = ACTIONS(435), - [anon_sym_str] = ACTIONS(435), - [anon_sym_char] = ACTIONS(435), - [anon_sym_as] = ACTIONS(435), - [anon_sym_const] = ACTIONS(435), - [anon_sym_POUND] = ACTIONS(433), - [anon_sym_EQ] = ACTIONS(435), - [anon_sym_COMMA] = ACTIONS(433), - [anon_sym_ref] = ACTIONS(435), - [anon_sym_LT] = ACTIONS(435), - [anon_sym_GT] = ACTIONS(435), - [anon_sym_COLON_COLON] = ACTIONS(433), - [anon_sym__] = ACTIONS(435), - [anon_sym_AMP] = ACTIONS(435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(433), - [sym_mutable_specifier] = ACTIONS(435), - [anon_sym_DOT_DOT] = ACTIONS(435), - [anon_sym_DOT_DOT_EQ] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(435), - [anon_sym_AMP_AMP] = ACTIONS(433), - [anon_sym_PIPE_PIPE] = ACTIONS(433), - [anon_sym_PIPE] = ACTIONS(435), - [anon_sym_CARET] = ACTIONS(435), - [anon_sym_EQ_EQ] = ACTIONS(433), - [anon_sym_BANG_EQ] = ACTIONS(433), - [anon_sym_LT_EQ] = ACTIONS(433), - [anon_sym_GT_EQ] = ACTIONS(433), - [anon_sym_LT_LT] = ACTIONS(435), - [anon_sym_GT_GT] = ACTIONS(435), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(435), - [anon_sym_PLUS_EQ] = ACTIONS(433), - [anon_sym_DASH_EQ] = ACTIONS(433), - [anon_sym_STAR_EQ] = ACTIONS(433), - [anon_sym_SLASH_EQ] = ACTIONS(433), - [anon_sym_PERCENT_EQ] = ACTIONS(433), - [anon_sym_AMP_EQ] = ACTIONS(433), - [anon_sym_PIPE_EQ] = ACTIONS(433), - [anon_sym_CARET_EQ] = ACTIONS(433), - [anon_sym_LT_LT_EQ] = ACTIONS(433), - [anon_sym_GT_GT_EQ] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(435), - [sym_integer_literal] = ACTIONS(433), - [aux_sym_string_literal_token1] = ACTIONS(433), - [sym_char_literal] = ACTIONS(433), - [anon_sym_true] = ACTIONS(435), - [anon_sym_false] = ACTIONS(435), + [230] = { + [sym_identifier] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(401), + [anon_sym_i8] = ACTIONS(401), + [anon_sym_u16] = ACTIONS(401), + [anon_sym_i16] = ACTIONS(401), + [anon_sym_u32] = ACTIONS(401), + [anon_sym_i32] = ACTIONS(401), + [anon_sym_u64] = ACTIONS(401), + [anon_sym_i64] = ACTIONS(401), + [anon_sym_u128] = ACTIONS(401), + [anon_sym_i128] = ACTIONS(401), + [anon_sym_isize] = ACTIONS(401), + [anon_sym_usize] = ACTIONS(401), + [anon_sym_f32] = ACTIONS(401), + [anon_sym_f64] = ACTIONS(401), + [anon_sym_bool] = ACTIONS(401), + [anon_sym_str] = ACTIONS(401), + [anon_sym_char] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), + [anon_sym_const] = ACTIONS(401), + [anon_sym_POUND] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(399), + [anon_sym_ref] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(399), + [anon_sym__] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [sym_mutable_specifier] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [sym_integer_literal] = ACTIONS(399), + [aux_sym_string_literal_token1] = ACTIONS(399), + [sym_char_literal] = ACTIONS(399), + [anon_sym_true] = ACTIONS(401), + [anon_sym_false] = ACTIONS(401), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(435), - [sym_super] = ACTIONS(435), - [sym_crate] = ACTIONS(435), - [sym_metavariable] = ACTIONS(433), - [sym_raw_string_literal] = ACTIONS(433), - [sym_float_literal] = ACTIONS(433), + [sym_self] = ACTIONS(401), + [sym_super] = ACTIONS(401), + [sym_crate] = ACTIONS(401), + [sym_metavariable] = ACTIONS(399), + [sym_raw_string_literal] = ACTIONS(399), + [sym_float_literal] = ACTIONS(399), [sym_block_comment] = ACTIONS(3), }, - [225] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1719), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1718), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(1954), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(1954), - [sym__literal] = STATE(1954), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [231] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1670), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1668), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_type_binding] = STATE(1957), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(844), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -31851,25 +32322,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(852), [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(668), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), + [aux_sym_string_literal_token1] = ACTIONS(712), [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -31879,118 +32350,742 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(860), [sym_block_comment] = ACTIONS(3), }, - [226] = { - [sym_identifier] = ACTIONS(566), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(566), - [anon_sym_QMARK] = ACTIONS(564), - [anon_sym_u8] = ACTIONS(566), - [anon_sym_i8] = ACTIONS(566), - [anon_sym_u16] = ACTIONS(566), - [anon_sym_i16] = ACTIONS(566), - [anon_sym_u32] = ACTIONS(566), - [anon_sym_i32] = ACTIONS(566), - [anon_sym_u64] = ACTIONS(566), - [anon_sym_i64] = ACTIONS(566), - [anon_sym_u128] = ACTIONS(566), - [anon_sym_i128] = ACTIONS(566), - [anon_sym_isize] = ACTIONS(566), - [anon_sym_usize] = ACTIONS(566), - [anon_sym_f32] = ACTIONS(566), - [anon_sym_f64] = ACTIONS(566), - [anon_sym_bool] = ACTIONS(566), - [anon_sym_str] = ACTIONS(566), - [anon_sym_char] = ACTIONS(566), - [anon_sym_as] = ACTIONS(566), - [anon_sym_const] = ACTIONS(566), - [anon_sym_POUND] = ACTIONS(564), - [anon_sym_EQ] = ACTIONS(566), - [anon_sym_COMMA] = ACTIONS(564), - [anon_sym_ref] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_GT] = ACTIONS(566), - [anon_sym_COLON_COLON] = ACTIONS(564), - [anon_sym__] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(564), - [sym_mutable_specifier] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_DOT_EQ] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(566), - [anon_sym_AMP_AMP] = ACTIONS(564), - [anon_sym_PIPE_PIPE] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(564), - [anon_sym_BANG_EQ] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(566), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(566), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(564), - [anon_sym_DASH_EQ] = ACTIONS(564), - [anon_sym_STAR_EQ] = ACTIONS(564), - [anon_sym_SLASH_EQ] = ACTIONS(564), - [anon_sym_PERCENT_EQ] = ACTIONS(564), - [anon_sym_AMP_EQ] = ACTIONS(564), - [anon_sym_PIPE_EQ] = ACTIONS(564), - [anon_sym_CARET_EQ] = ACTIONS(564), - [anon_sym_LT_LT_EQ] = ACTIONS(564), - [anon_sym_GT_GT_EQ] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(566), - [sym_integer_literal] = ACTIONS(564), - [aux_sym_string_literal_token1] = ACTIONS(564), - [sym_char_literal] = ACTIONS(564), - [anon_sym_true] = ACTIONS(566), - [anon_sym_false] = ACTIONS(566), + [232] = { + [sym_identifier] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_u8] = ACTIONS(572), + [anon_sym_i8] = ACTIONS(572), + [anon_sym_u16] = ACTIONS(572), + [anon_sym_i16] = ACTIONS(572), + [anon_sym_u32] = ACTIONS(572), + [anon_sym_i32] = ACTIONS(572), + [anon_sym_u64] = ACTIONS(572), + [anon_sym_i64] = ACTIONS(572), + [anon_sym_u128] = ACTIONS(572), + [anon_sym_i128] = ACTIONS(572), + [anon_sym_isize] = ACTIONS(572), + [anon_sym_usize] = ACTIONS(572), + [anon_sym_f32] = ACTIONS(572), + [anon_sym_f64] = ACTIONS(572), + [anon_sym_bool] = ACTIONS(572), + [anon_sym_str] = ACTIONS(572), + [anon_sym_char] = ACTIONS(572), + [anon_sym_as] = ACTIONS(572), + [anon_sym_const] = ACTIONS(572), + [anon_sym_POUND] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_ref] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(572), + [anon_sym_COLON_COLON] = ACTIONS(570), + [anon_sym__] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(570), + [sym_mutable_specifier] = ACTIONS(572), + [anon_sym_DOT_DOT] = ACTIONS(572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(570), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_EQ_EQ] = ACTIONS(570), + [anon_sym_BANG_EQ] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(572), + [anon_sym_GT_GT] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(570), + [anon_sym_STAR_EQ] = ACTIONS(570), + [anon_sym_SLASH_EQ] = ACTIONS(570), + [anon_sym_PERCENT_EQ] = ACTIONS(570), + [anon_sym_AMP_EQ] = ACTIONS(570), + [anon_sym_PIPE_EQ] = ACTIONS(570), + [anon_sym_CARET_EQ] = ACTIONS(570), + [anon_sym_LT_LT_EQ] = ACTIONS(570), + [anon_sym_GT_GT_EQ] = ACTIONS(570), + [anon_sym_DOT] = ACTIONS(572), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(566), - [sym_super] = ACTIONS(566), - [sym_crate] = ACTIONS(566), - [sym_metavariable] = ACTIONS(564), - [sym_raw_string_literal] = ACTIONS(564), - [sym_float_literal] = ACTIONS(564), + [sym_self] = ACTIONS(572), + [sym_super] = ACTIONS(572), + [sym_crate] = ACTIONS(572), + [sym_metavariable] = ACTIONS(570), + [sym_raw_string_literal] = ACTIONS(570), + [sym_float_literal] = ACTIONS(570), [sym_block_comment] = ACTIONS(3), }, - [227] = { - [sym_empty_statement] = STATE(228), - [sym_macro_definition] = STATE(228), - [sym_attribute_item] = STATE(228), - [sym_inner_attribute_item] = STATE(228), - [sym_mod_item] = STATE(228), - [sym_foreign_mod_item] = STATE(228), - [sym_struct_item] = STATE(228), - [sym_union_item] = STATE(228), - [sym_enum_item] = STATE(228), - [sym_extern_crate_declaration] = STATE(228), - [sym_const_item] = STATE(228), - [sym_static_item] = STATE(228), - [sym_type_item] = STATE(228), - [sym_function_item] = STATE(228), - [sym_function_signature_item] = STATE(228), - [sym_function_modifiers] = STATE(2396), - [sym_impl_item] = STATE(228), - [sym_trait_item] = STATE(228), - [sym_associated_type] = STATE(228), - [sym_let_declaration] = STATE(228), - [sym_use_declaration] = STATE(228), - [sym_extern_modifier] = STATE(1420), - [sym_visibility_modifier] = STATE(1255), - [sym_bracketed_type] = STATE(2224), - [sym_generic_type_with_turbofish] = STATE(2226), - [sym_macro_invocation] = STATE(228), - [sym_scoped_identifier] = STATE(2162), - [aux_sym_declaration_list_repeat1] = STATE(228), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [233] = { + [sym_identifier] = ACTIONS(433), + [anon_sym_LPAREN] = ACTIONS(431), + [anon_sym_RBRACE] = ACTIONS(431), + [anon_sym_LBRACK] = ACTIONS(431), + [anon_sym_PLUS] = ACTIONS(433), + [anon_sym_STAR] = ACTIONS(433), + [anon_sym_QMARK] = ACTIONS(431), + [anon_sym_u8] = ACTIONS(433), + [anon_sym_i8] = ACTIONS(433), + [anon_sym_u16] = ACTIONS(433), + [anon_sym_i16] = ACTIONS(433), + [anon_sym_u32] = ACTIONS(433), + [anon_sym_i32] = ACTIONS(433), + [anon_sym_u64] = ACTIONS(433), + [anon_sym_i64] = ACTIONS(433), + [anon_sym_u128] = ACTIONS(433), + [anon_sym_i128] = ACTIONS(433), + [anon_sym_isize] = ACTIONS(433), + [anon_sym_usize] = ACTIONS(433), + [anon_sym_f32] = ACTIONS(433), + [anon_sym_f64] = ACTIONS(433), + [anon_sym_bool] = ACTIONS(433), + [anon_sym_str] = ACTIONS(433), + [anon_sym_char] = ACTIONS(433), + [anon_sym_as] = ACTIONS(433), + [anon_sym_const] = ACTIONS(433), + [anon_sym_POUND] = ACTIONS(431), + [anon_sym_EQ] = ACTIONS(433), + [anon_sym_COMMA] = ACTIONS(431), + [anon_sym_ref] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(433), + [anon_sym_GT] = ACTIONS(433), + [anon_sym_COLON_COLON] = ACTIONS(431), + [anon_sym__] = ACTIONS(433), + [anon_sym_AMP] = ACTIONS(433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(431), + [sym_mutable_specifier] = ACTIONS(433), + [anon_sym_DOT_DOT] = ACTIONS(433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_AMP_AMP] = ACTIONS(431), + [anon_sym_PIPE_PIPE] = ACTIONS(431), + [anon_sym_PIPE] = ACTIONS(433), + [anon_sym_CARET] = ACTIONS(433), + [anon_sym_EQ_EQ] = ACTIONS(431), + [anon_sym_BANG_EQ] = ACTIONS(431), + [anon_sym_LT_EQ] = ACTIONS(431), + [anon_sym_GT_EQ] = ACTIONS(431), + [anon_sym_LT_LT] = ACTIONS(433), + [anon_sym_GT_GT] = ACTIONS(433), + [anon_sym_SLASH] = ACTIONS(433), + [anon_sym_PERCENT] = ACTIONS(433), + [anon_sym_PLUS_EQ] = ACTIONS(431), + [anon_sym_DASH_EQ] = ACTIONS(431), + [anon_sym_STAR_EQ] = ACTIONS(431), + [anon_sym_SLASH_EQ] = ACTIONS(431), + [anon_sym_PERCENT_EQ] = ACTIONS(431), + [anon_sym_AMP_EQ] = ACTIONS(431), + [anon_sym_PIPE_EQ] = ACTIONS(431), + [anon_sym_CARET_EQ] = ACTIONS(431), + [anon_sym_LT_LT_EQ] = ACTIONS(431), + [anon_sym_GT_GT_EQ] = ACTIONS(431), + [anon_sym_DOT] = ACTIONS(433), + [sym_integer_literal] = ACTIONS(431), + [aux_sym_string_literal_token1] = ACTIONS(431), + [sym_char_literal] = ACTIONS(431), + [anon_sym_true] = ACTIONS(433), + [anon_sym_false] = ACTIONS(433), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(433), + [sym_super] = ACTIONS(433), + [sym_crate] = ACTIONS(433), + [sym_metavariable] = ACTIONS(431), + [sym_raw_string_literal] = ACTIONS(431), + [sym_float_literal] = ACTIONS(431), + [sym_block_comment] = ACTIONS(3), + }, + [234] = { + [sym_identifier] = ACTIONS(413), + [anon_sym_LPAREN] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(413), + [anon_sym_i8] = ACTIONS(413), + [anon_sym_u16] = ACTIONS(413), + [anon_sym_i16] = ACTIONS(413), + [anon_sym_u32] = ACTIONS(413), + [anon_sym_i32] = ACTIONS(413), + [anon_sym_u64] = ACTIONS(413), + [anon_sym_i64] = ACTIONS(413), + [anon_sym_u128] = ACTIONS(413), + [anon_sym_i128] = ACTIONS(413), + [anon_sym_isize] = ACTIONS(413), + [anon_sym_usize] = ACTIONS(413), + [anon_sym_f32] = ACTIONS(413), + [anon_sym_f64] = ACTIONS(413), + [anon_sym_bool] = ACTIONS(413), + [anon_sym_str] = ACTIONS(413), + [anon_sym_char] = ACTIONS(413), + [anon_sym_as] = ACTIONS(413), + [anon_sym_const] = ACTIONS(413), + [anon_sym_POUND] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_COMMA] = ACTIONS(411), + [anon_sym_ref] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(413), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_COLON_COLON] = ACTIONS(411), + [anon_sym__] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [sym_mutable_specifier] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_PIPE] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [sym_integer_literal] = ACTIONS(411), + [aux_sym_string_literal_token1] = ACTIONS(411), + [sym_char_literal] = ACTIONS(411), + [anon_sym_true] = ACTIONS(413), + [anon_sym_false] = ACTIONS(413), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_crate] = ACTIONS(413), + [sym_metavariable] = ACTIONS(411), + [sym_raw_string_literal] = ACTIONS(411), + [sym_float_literal] = ACTIONS(411), + [sym_block_comment] = ACTIONS(3), + }, + [235] = { + [sym_identifier] = ACTIONS(437), + [anon_sym_LPAREN] = ACTIONS(435), + [anon_sym_RBRACE] = ACTIONS(435), + [anon_sym_LBRACK] = ACTIONS(435), + [anon_sym_PLUS] = ACTIONS(437), + [anon_sym_STAR] = ACTIONS(437), + [anon_sym_QMARK] = ACTIONS(435), + [anon_sym_u8] = ACTIONS(437), + [anon_sym_i8] = ACTIONS(437), + [anon_sym_u16] = ACTIONS(437), + [anon_sym_i16] = ACTIONS(437), + [anon_sym_u32] = ACTIONS(437), + [anon_sym_i32] = ACTIONS(437), + [anon_sym_u64] = ACTIONS(437), + [anon_sym_i64] = ACTIONS(437), + [anon_sym_u128] = ACTIONS(437), + [anon_sym_i128] = ACTIONS(437), + [anon_sym_isize] = ACTIONS(437), + [anon_sym_usize] = ACTIONS(437), + [anon_sym_f32] = ACTIONS(437), + [anon_sym_f64] = ACTIONS(437), + [anon_sym_bool] = ACTIONS(437), + [anon_sym_str] = ACTIONS(437), + [anon_sym_char] = ACTIONS(437), + [anon_sym_as] = ACTIONS(437), + [anon_sym_const] = ACTIONS(437), + [anon_sym_POUND] = ACTIONS(435), + [anon_sym_EQ] = ACTIONS(437), + [anon_sym_COMMA] = ACTIONS(435), + [anon_sym_ref] = ACTIONS(437), + [anon_sym_LT] = ACTIONS(437), + [anon_sym_GT] = ACTIONS(437), + [anon_sym_COLON_COLON] = ACTIONS(435), + [anon_sym__] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(435), + [sym_mutable_specifier] = ACTIONS(437), + [anon_sym_DOT_DOT] = ACTIONS(437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(435), + [anon_sym_DASH] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(435), + [anon_sym_PIPE_PIPE] = ACTIONS(435), + [anon_sym_PIPE] = ACTIONS(437), + [anon_sym_CARET] = ACTIONS(437), + [anon_sym_EQ_EQ] = ACTIONS(435), + [anon_sym_BANG_EQ] = ACTIONS(435), + [anon_sym_LT_EQ] = ACTIONS(435), + [anon_sym_GT_EQ] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_GT_GT] = ACTIONS(437), + [anon_sym_SLASH] = ACTIONS(437), + [anon_sym_PERCENT] = ACTIONS(437), + [anon_sym_PLUS_EQ] = ACTIONS(435), + [anon_sym_DASH_EQ] = ACTIONS(435), + [anon_sym_STAR_EQ] = ACTIONS(435), + [anon_sym_SLASH_EQ] = ACTIONS(435), + [anon_sym_PERCENT_EQ] = ACTIONS(435), + [anon_sym_AMP_EQ] = ACTIONS(435), + [anon_sym_PIPE_EQ] = ACTIONS(435), + [anon_sym_CARET_EQ] = ACTIONS(435), + [anon_sym_LT_LT_EQ] = ACTIONS(435), + [anon_sym_GT_GT_EQ] = ACTIONS(435), + [anon_sym_DOT] = ACTIONS(437), + [sym_integer_literal] = ACTIONS(435), + [aux_sym_string_literal_token1] = ACTIONS(435), + [sym_char_literal] = ACTIONS(435), + [anon_sym_true] = ACTIONS(437), + [anon_sym_false] = ACTIONS(437), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(437), + [sym_super] = ACTIONS(437), + [sym_crate] = ACTIONS(437), + [sym_metavariable] = ACTIONS(435), + [sym_raw_string_literal] = ACTIONS(435), + [sym_float_literal] = ACTIONS(435), + [sym_block_comment] = ACTIONS(3), + }, + [236] = { + [sym_identifier] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(1033), + [anon_sym_i8] = ACTIONS(1033), + [anon_sym_u16] = ACTIONS(1033), + [anon_sym_i16] = ACTIONS(1033), + [anon_sym_u32] = ACTIONS(1033), + [anon_sym_i32] = ACTIONS(1033), + [anon_sym_u64] = ACTIONS(1033), + [anon_sym_i64] = ACTIONS(1033), + [anon_sym_u128] = ACTIONS(1033), + [anon_sym_i128] = ACTIONS(1033), + [anon_sym_isize] = ACTIONS(1033), + [anon_sym_usize] = ACTIONS(1033), + [anon_sym_f32] = ACTIONS(1033), + [anon_sym_f64] = ACTIONS(1033), + [anon_sym_bool] = ACTIONS(1033), + [anon_sym_str] = ACTIONS(1033), + [anon_sym_char] = ACTIONS(1033), + [anon_sym_as] = ACTIONS(455), + [anon_sym_const] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(1035), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_ref] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(1035), + [anon_sym__] = ACTIONS(1033), + [anon_sym_AMP] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1033), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(1035), + [aux_sym_string_literal_token1] = ACTIONS(1035), + [sym_char_literal] = ACTIONS(1035), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1033), + [sym_super] = ACTIONS(1033), + [sym_crate] = ACTIONS(1033), + [sym_metavariable] = ACTIONS(1035), + [sym_raw_string_literal] = ACTIONS(1035), + [sym_float_literal] = ACTIONS(1035), + [sym_block_comment] = ACTIONS(3), + }, + [237] = { + [sym_identifier] = ACTIONS(441), + [anon_sym_LPAREN] = ACTIONS(439), + [anon_sym_RBRACE] = ACTIONS(439), + [anon_sym_LBRACK] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(441), + [anon_sym_STAR] = ACTIONS(441), + [anon_sym_QMARK] = ACTIONS(439), + [anon_sym_u8] = ACTIONS(441), + [anon_sym_i8] = ACTIONS(441), + [anon_sym_u16] = ACTIONS(441), + [anon_sym_i16] = ACTIONS(441), + [anon_sym_u32] = ACTIONS(441), + [anon_sym_i32] = ACTIONS(441), + [anon_sym_u64] = ACTIONS(441), + [anon_sym_i64] = ACTIONS(441), + [anon_sym_u128] = ACTIONS(441), + [anon_sym_i128] = ACTIONS(441), + [anon_sym_isize] = ACTIONS(441), + [anon_sym_usize] = ACTIONS(441), + [anon_sym_f32] = ACTIONS(441), + [anon_sym_f64] = ACTIONS(441), + [anon_sym_bool] = ACTIONS(441), + [anon_sym_str] = ACTIONS(441), + [anon_sym_char] = ACTIONS(441), + [anon_sym_as] = ACTIONS(441), + [anon_sym_const] = ACTIONS(441), + [anon_sym_POUND] = ACTIONS(439), + [anon_sym_EQ] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(439), + [anon_sym_ref] = ACTIONS(441), + [anon_sym_LT] = ACTIONS(441), + [anon_sym_GT] = ACTIONS(441), + [anon_sym_COLON_COLON] = ACTIONS(439), + [anon_sym__] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(441), + [anon_sym_DOT_DOT_DOT] = ACTIONS(439), + [sym_mutable_specifier] = ACTIONS(441), + [anon_sym_DOT_DOT] = ACTIONS(441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(441), + [anon_sym_AMP_AMP] = ACTIONS(439), + [anon_sym_PIPE_PIPE] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(441), + [anon_sym_CARET] = ACTIONS(441), + [anon_sym_EQ_EQ] = ACTIONS(439), + [anon_sym_BANG_EQ] = ACTIONS(439), + [anon_sym_LT_EQ] = ACTIONS(439), + [anon_sym_GT_EQ] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(441), + [anon_sym_GT_GT] = ACTIONS(441), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(441), + [anon_sym_PLUS_EQ] = ACTIONS(439), + [anon_sym_DASH_EQ] = ACTIONS(439), + [anon_sym_STAR_EQ] = ACTIONS(439), + [anon_sym_SLASH_EQ] = ACTIONS(439), + [anon_sym_PERCENT_EQ] = ACTIONS(439), + [anon_sym_AMP_EQ] = ACTIONS(439), + [anon_sym_PIPE_EQ] = ACTIONS(439), + [anon_sym_CARET_EQ] = ACTIONS(439), + [anon_sym_LT_LT_EQ] = ACTIONS(439), + [anon_sym_GT_GT_EQ] = ACTIONS(439), + [anon_sym_DOT] = ACTIONS(441), + [sym_integer_literal] = ACTIONS(439), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(439), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(441), + [sym_super] = ACTIONS(441), + [sym_crate] = ACTIONS(441), + [sym_metavariable] = ACTIONS(439), + [sym_raw_string_literal] = ACTIONS(439), + [sym_float_literal] = ACTIONS(439), + [sym_block_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(417), + [anon_sym_LPAREN] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_LBRACK] = ACTIONS(415), + [anon_sym_PLUS] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(417), + [anon_sym_QMARK] = ACTIONS(415), + [anon_sym_u8] = ACTIONS(417), + [anon_sym_i8] = ACTIONS(417), + [anon_sym_u16] = ACTIONS(417), + [anon_sym_i16] = ACTIONS(417), + [anon_sym_u32] = ACTIONS(417), + [anon_sym_i32] = ACTIONS(417), + [anon_sym_u64] = ACTIONS(417), + [anon_sym_i64] = ACTIONS(417), + [anon_sym_u128] = ACTIONS(417), + [anon_sym_i128] = ACTIONS(417), + [anon_sym_isize] = ACTIONS(417), + [anon_sym_usize] = ACTIONS(417), + [anon_sym_f32] = ACTIONS(417), + [anon_sym_f64] = ACTIONS(417), + [anon_sym_bool] = ACTIONS(417), + [anon_sym_str] = ACTIONS(417), + [anon_sym_char] = ACTIONS(417), + [anon_sym_as] = ACTIONS(417), + [anon_sym_const] = ACTIONS(417), + [anon_sym_POUND] = ACTIONS(415), + [anon_sym_EQ] = ACTIONS(417), + [anon_sym_COMMA] = ACTIONS(415), + [anon_sym_ref] = ACTIONS(417), + [anon_sym_LT] = ACTIONS(417), + [anon_sym_GT] = ACTIONS(417), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym__] = ACTIONS(417), + [anon_sym_AMP] = ACTIONS(417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(415), + [sym_mutable_specifier] = ACTIONS(417), + [anon_sym_DOT_DOT] = ACTIONS(417), + [anon_sym_DOT_DOT_EQ] = ACTIONS(415), + [anon_sym_DASH] = ACTIONS(417), + [anon_sym_AMP_AMP] = ACTIONS(415), + [anon_sym_PIPE_PIPE] = ACTIONS(415), + [anon_sym_PIPE] = ACTIONS(417), + [anon_sym_CARET] = ACTIONS(417), + [anon_sym_EQ_EQ] = ACTIONS(415), + [anon_sym_BANG_EQ] = ACTIONS(415), + [anon_sym_LT_EQ] = ACTIONS(415), + [anon_sym_GT_EQ] = ACTIONS(415), + [anon_sym_LT_LT] = ACTIONS(417), + [anon_sym_GT_GT] = ACTIONS(417), + [anon_sym_SLASH] = ACTIONS(417), + [anon_sym_PERCENT] = ACTIONS(417), + [anon_sym_PLUS_EQ] = ACTIONS(415), + [anon_sym_DASH_EQ] = ACTIONS(415), + [anon_sym_STAR_EQ] = ACTIONS(415), + [anon_sym_SLASH_EQ] = ACTIONS(415), + [anon_sym_PERCENT_EQ] = ACTIONS(415), + [anon_sym_AMP_EQ] = ACTIONS(415), + [anon_sym_PIPE_EQ] = ACTIONS(415), + [anon_sym_CARET_EQ] = ACTIONS(415), + [anon_sym_LT_LT_EQ] = ACTIONS(415), + [anon_sym_GT_GT_EQ] = ACTIONS(415), + [anon_sym_DOT] = ACTIONS(417), + [sym_integer_literal] = ACTIONS(415), + [aux_sym_string_literal_token1] = ACTIONS(415), + [sym_char_literal] = ACTIONS(415), + [anon_sym_true] = ACTIONS(417), + [anon_sym_false] = ACTIONS(417), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(417), + [sym_super] = ACTIONS(417), + [sym_crate] = ACTIONS(417), + [sym_metavariable] = ACTIONS(415), + [sym_raw_string_literal] = ACTIONS(415), + [sym_float_literal] = ACTIONS(415), + [sym_block_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_LBRACK] = ACTIONS(423), + [anon_sym_PLUS] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_QMARK] = ACTIONS(423), + [anon_sym_u8] = ACTIONS(425), + [anon_sym_i8] = ACTIONS(425), + [anon_sym_u16] = ACTIONS(425), + [anon_sym_i16] = ACTIONS(425), + [anon_sym_u32] = ACTIONS(425), + [anon_sym_i32] = ACTIONS(425), + [anon_sym_u64] = ACTIONS(425), + [anon_sym_i64] = ACTIONS(425), + [anon_sym_u128] = ACTIONS(425), + [anon_sym_i128] = ACTIONS(425), + [anon_sym_isize] = ACTIONS(425), + [anon_sym_usize] = ACTIONS(425), + [anon_sym_f32] = ACTIONS(425), + [anon_sym_f64] = ACTIONS(425), + [anon_sym_bool] = ACTIONS(425), + [anon_sym_str] = ACTIONS(425), + [anon_sym_char] = ACTIONS(425), + [anon_sym_as] = ACTIONS(425), + [anon_sym_const] = ACTIONS(425), + [anon_sym_POUND] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(425), + [anon_sym_COMMA] = ACTIONS(423), + [anon_sym_ref] = ACTIONS(425), + [anon_sym_LT] = ACTIONS(425), + [anon_sym_GT] = ACTIONS(425), + [anon_sym_COLON_COLON] = ACTIONS(423), + [anon_sym__] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(423), + [sym_mutable_specifier] = ACTIONS(425), + [anon_sym_DOT_DOT] = ACTIONS(425), + [anon_sym_DOT_DOT_EQ] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(425), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(425), + [anon_sym_CARET] = ACTIONS(425), + [anon_sym_EQ_EQ] = ACTIONS(423), + [anon_sym_BANG_EQ] = ACTIONS(423), + [anon_sym_LT_EQ] = ACTIONS(423), + [anon_sym_GT_EQ] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(425), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_SLASH] = ACTIONS(425), + [anon_sym_PERCENT] = ACTIONS(425), + [anon_sym_PLUS_EQ] = ACTIONS(423), + [anon_sym_DASH_EQ] = ACTIONS(423), + [anon_sym_STAR_EQ] = ACTIONS(423), + [anon_sym_SLASH_EQ] = ACTIONS(423), + [anon_sym_PERCENT_EQ] = ACTIONS(423), + [anon_sym_AMP_EQ] = ACTIONS(423), + [anon_sym_PIPE_EQ] = ACTIONS(423), + [anon_sym_CARET_EQ] = ACTIONS(423), + [anon_sym_LT_LT_EQ] = ACTIONS(423), + [anon_sym_GT_GT_EQ] = ACTIONS(423), + [anon_sym_DOT] = ACTIONS(425), + [sym_integer_literal] = ACTIONS(423), + [aux_sym_string_literal_token1] = ACTIONS(423), + [sym_char_literal] = ACTIONS(423), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(425), + [sym_super] = ACTIONS(425), + [sym_crate] = ACTIONS(425), + [sym_metavariable] = ACTIONS(423), + [sym_raw_string_literal] = ACTIONS(423), + [sym_float_literal] = ACTIONS(423), + [sym_block_comment] = ACTIONS(3), + }, + [240] = { + [sym_identifier] = ACTIONS(590), + [anon_sym_LPAREN] = ACTIONS(588), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(590), + [anon_sym_STAR] = ACTIONS(590), + [anon_sym_QMARK] = ACTIONS(588), + [anon_sym_u8] = ACTIONS(590), + [anon_sym_i8] = ACTIONS(590), + [anon_sym_u16] = ACTIONS(590), + [anon_sym_i16] = ACTIONS(590), + [anon_sym_u32] = ACTIONS(590), + [anon_sym_i32] = ACTIONS(590), + [anon_sym_u64] = ACTIONS(590), + [anon_sym_i64] = ACTIONS(590), + [anon_sym_u128] = ACTIONS(590), + [anon_sym_i128] = ACTIONS(590), + [anon_sym_isize] = ACTIONS(590), + [anon_sym_usize] = ACTIONS(590), + [anon_sym_f32] = ACTIONS(590), + [anon_sym_f64] = ACTIONS(590), + [anon_sym_bool] = ACTIONS(590), + [anon_sym_str] = ACTIONS(590), + [anon_sym_char] = ACTIONS(590), + [anon_sym_as] = ACTIONS(590), + [anon_sym_const] = ACTIONS(590), + [anon_sym_POUND] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_COMMA] = ACTIONS(588), + [anon_sym_ref] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(590), + [anon_sym_COLON_COLON] = ACTIONS(588), + [anon_sym__] = ACTIONS(590), + [anon_sym_AMP] = ACTIONS(590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(588), + [sym_mutable_specifier] = ACTIONS(590), + [anon_sym_DOT_DOT] = ACTIONS(590), + [anon_sym_DOT_DOT_EQ] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(590), + [anon_sym_AMP_AMP] = ACTIONS(588), + [anon_sym_PIPE_PIPE] = ACTIONS(588), + [anon_sym_PIPE] = ACTIONS(590), + [anon_sym_CARET] = ACTIONS(590), + [anon_sym_EQ_EQ] = ACTIONS(588), + [anon_sym_BANG_EQ] = ACTIONS(588), + [anon_sym_LT_EQ] = ACTIONS(588), + [anon_sym_GT_EQ] = ACTIONS(588), + [anon_sym_LT_LT] = ACTIONS(590), + [anon_sym_GT_GT] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_PERCENT] = ACTIONS(590), + [anon_sym_PLUS_EQ] = ACTIONS(588), + [anon_sym_DASH_EQ] = ACTIONS(588), + [anon_sym_STAR_EQ] = ACTIONS(588), + [anon_sym_SLASH_EQ] = ACTIONS(588), + [anon_sym_PERCENT_EQ] = ACTIONS(588), + [anon_sym_AMP_EQ] = ACTIONS(588), + [anon_sym_PIPE_EQ] = ACTIONS(588), + [anon_sym_CARET_EQ] = ACTIONS(588), + [anon_sym_LT_LT_EQ] = ACTIONS(588), + [anon_sym_GT_GT_EQ] = ACTIONS(588), + [anon_sym_DOT] = ACTIONS(590), + [sym_integer_literal] = ACTIONS(588), + [aux_sym_string_literal_token1] = ACTIONS(588), + [sym_char_literal] = ACTIONS(588), + [anon_sym_true] = ACTIONS(590), + [anon_sym_false] = ACTIONS(590), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(590), + [sym_super] = ACTIONS(590), + [sym_crate] = ACTIONS(590), + [sym_metavariable] = ACTIONS(588), + [sym_raw_string_literal] = ACTIONS(588), + [sym_float_literal] = ACTIONS(588), + [sym_block_comment] = ACTIONS(3), + }, + [241] = { + [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(2399), + [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(1436), + [sym_visibility_modifier] = STATE(1261), + [sym_bracketed_type] = STATE(2237), + [sym_generic_type_with_turbofish] = STATE(2403), + [sym_macro_invocation] = STATE(244), + [sym_scoped_identifier] = STATE(2024), + [aux_sym_declaration_list_repeat1] = STATE(244), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(903), [anon_sym_SEMI] = ACTIONS(905), [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(1037), [anon_sym_u8] = ACTIONS(911), [anon_sym_i8] = ACTIONS(911), [anon_sym_u16] = ACTIONS(911), @@ -32008,9 +33103,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(911), [anon_sym_str] = ACTIONS(911), [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(652), + [anon_sym_async] = ACTIONS(670), [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(652), + [anon_sym_default] = ACTIONS(670), [anon_sym_enum] = ACTIONS(915), [anon_sym_fn] = ACTIONS(917), [anon_sym_impl] = ACTIONS(919), @@ -32035,40 +33130,196 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(949), [sym_block_comment] = ACTIONS(3), }, - [228] = { - [sym_empty_statement] = STATE(240), - [sym_macro_definition] = STATE(240), - [sym_attribute_item] = STATE(240), - [sym_inner_attribute_item] = STATE(240), - [sym_mod_item] = STATE(240), - [sym_foreign_mod_item] = STATE(240), - [sym_struct_item] = STATE(240), - [sym_union_item] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_extern_crate_declaration] = STATE(240), - [sym_const_item] = STATE(240), - [sym_static_item] = STATE(240), - [sym_type_item] = STATE(240), - [sym_function_item] = STATE(240), - [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2396), - [sym_impl_item] = STATE(240), - [sym_trait_item] = STATE(240), - [sym_associated_type] = STATE(240), - [sym_let_declaration] = STATE(240), - [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1420), - [sym_visibility_modifier] = STATE(1255), - [sym_bracketed_type] = STATE(2224), - [sym_generic_type_with_turbofish] = STATE(2226), - [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2162), - [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [242] = { + [sym_identifier] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_LBRACK] = ACTIONS(1041), + [anon_sym_PLUS] = ACTIONS(455), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_QMARK] = ACTIONS(453), + [anon_sym_u8] = ACTIONS(1039), + [anon_sym_i8] = ACTIONS(1039), + [anon_sym_u16] = ACTIONS(1039), + [anon_sym_i16] = ACTIONS(1039), + [anon_sym_u32] = ACTIONS(1039), + [anon_sym_i32] = ACTIONS(1039), + [anon_sym_u64] = ACTIONS(1039), + [anon_sym_i64] = ACTIONS(1039), + [anon_sym_u128] = ACTIONS(1039), + [anon_sym_i128] = ACTIONS(1039), + [anon_sym_isize] = ACTIONS(1039), + [anon_sym_usize] = ACTIONS(1039), + [anon_sym_f32] = ACTIONS(1039), + [anon_sym_f64] = ACTIONS(1039), + [anon_sym_bool] = ACTIONS(1039), + [anon_sym_str] = ACTIONS(1039), + [anon_sym_char] = ACTIONS(1039), + [anon_sym_as] = ACTIONS(455), + [anon_sym_const] = ACTIONS(1039), + [anon_sym_POUND] = ACTIONS(1041), + [anon_sym_EQ] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(453), + [anon_sym_ref] = ACTIONS(1039), + [anon_sym_LT] = ACTIONS(1039), + [anon_sym_GT] = ACTIONS(455), + [anon_sym_COLON_COLON] = ACTIONS(1041), + [anon_sym__] = ACTIONS(1039), + [anon_sym_AMP] = ACTIONS(1039), + [anon_sym_DOT_DOT_DOT] = ACTIONS(453), + [sym_mutable_specifier] = ACTIONS(1039), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(453), + [anon_sym_DASH] = ACTIONS(1039), + [anon_sym_AMP_AMP] = ACTIONS(453), + [anon_sym_PIPE_PIPE] = ACTIONS(453), + [anon_sym_PIPE] = ACTIONS(455), + [anon_sym_CARET] = ACTIONS(455), + [anon_sym_EQ_EQ] = ACTIONS(453), + [anon_sym_BANG_EQ] = ACTIONS(453), + [anon_sym_LT_EQ] = ACTIONS(453), + [anon_sym_GT_EQ] = ACTIONS(453), + [anon_sym_LT_LT] = ACTIONS(455), + [anon_sym_GT_GT] = ACTIONS(455), + [anon_sym_SLASH] = ACTIONS(455), + [anon_sym_PERCENT] = ACTIONS(455), + [anon_sym_PLUS_EQ] = ACTIONS(453), + [anon_sym_DASH_EQ] = ACTIONS(453), + [anon_sym_STAR_EQ] = ACTIONS(453), + [anon_sym_SLASH_EQ] = ACTIONS(453), + [anon_sym_PERCENT_EQ] = ACTIONS(453), + [anon_sym_AMP_EQ] = ACTIONS(453), + [anon_sym_PIPE_EQ] = ACTIONS(453), + [anon_sym_CARET_EQ] = ACTIONS(453), + [anon_sym_LT_LT_EQ] = ACTIONS(453), + [anon_sym_GT_GT_EQ] = ACTIONS(453), + [anon_sym_DOT] = ACTIONS(455), + [sym_integer_literal] = ACTIONS(1041), + [aux_sym_string_literal_token1] = ACTIONS(1041), + [sym_char_literal] = ACTIONS(1041), + [anon_sym_true] = ACTIONS(1039), + [anon_sym_false] = ACTIONS(1039), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1039), + [sym_super] = ACTIONS(1039), + [sym_crate] = ACTIONS(1039), + [sym_metavariable] = ACTIONS(1041), + [sym_raw_string_literal] = ACTIONS(1041), + [sym_float_literal] = ACTIONS(1041), + [sym_block_comment] = ACTIONS(3), + }, + [243] = { + [sym_identifier] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_u8] = ACTIONS(560), + [anon_sym_i8] = ACTIONS(560), + [anon_sym_u16] = ACTIONS(560), + [anon_sym_i16] = ACTIONS(560), + [anon_sym_u32] = ACTIONS(560), + [anon_sym_i32] = ACTIONS(560), + [anon_sym_u64] = ACTIONS(560), + [anon_sym_i64] = ACTIONS(560), + [anon_sym_u128] = ACTIONS(560), + [anon_sym_i128] = ACTIONS(560), + [anon_sym_isize] = ACTIONS(560), + [anon_sym_usize] = ACTIONS(560), + [anon_sym_f32] = ACTIONS(560), + [anon_sym_f64] = ACTIONS(560), + [anon_sym_bool] = ACTIONS(560), + [anon_sym_str] = ACTIONS(560), + [anon_sym_char] = ACTIONS(560), + [anon_sym_as] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_POUND] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_ref] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(558), + [anon_sym__] = ACTIONS(560), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [sym_mutable_specifier] = ACTIONS(560), + [anon_sym_DOT_DOT] = ACTIONS(560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_AMP_AMP] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(560), + [sym_integer_literal] = ACTIONS(558), + [aux_sym_string_literal_token1] = ACTIONS(558), + [sym_char_literal] = ACTIONS(558), + [anon_sym_true] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(560), + [sym_super] = ACTIONS(560), + [sym_crate] = ACTIONS(560), + [sym_metavariable] = ACTIONS(558), + [sym_raw_string_literal] = ACTIONS(558), + [sym_float_literal] = ACTIONS(558), + [sym_block_comment] = ACTIONS(3), + }, + [244] = { + [sym_empty_statement] = STATE(226), + [sym_macro_definition] = STATE(226), + [sym_attribute_item] = STATE(226), + [sym_inner_attribute_item] = STATE(226), + [sym_mod_item] = STATE(226), + [sym_foreign_mod_item] = STATE(226), + [sym_struct_item] = STATE(226), + [sym_union_item] = STATE(226), + [sym_enum_item] = STATE(226), + [sym_extern_crate_declaration] = STATE(226), + [sym_const_item] = STATE(226), + [sym_static_item] = STATE(226), + [sym_type_item] = STATE(226), + [sym_function_item] = STATE(226), + [sym_function_signature_item] = STATE(226), + [sym_function_modifiers] = STATE(2399), + [sym_impl_item] = STATE(226), + [sym_trait_item] = STATE(226), + [sym_associated_type] = STATE(226), + [sym_let_declaration] = STATE(226), + [sym_use_declaration] = STATE(226), + [sym_extern_modifier] = STATE(1436), + [sym_visibility_modifier] = STATE(1261), + [sym_bracketed_type] = STATE(2237), + [sym_generic_type_with_turbofish] = STATE(2403), + [sym_macro_invocation] = STATE(226), + [sym_scoped_identifier] = STATE(2024), + [aux_sym_declaration_list_repeat1] = STATE(226), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(903), [anon_sym_SEMI] = ACTIONS(905), [anon_sym_macro_rules_BANG] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_u8] = ACTIONS(911), [anon_sym_i8] = ACTIONS(911), [anon_sym_u16] = ACTIONS(911), @@ -32086,9 +33337,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(911), [anon_sym_str] = ACTIONS(911), [anon_sym_char] = ACTIONS(911), - [anon_sym_async] = ACTIONS(652), + [anon_sym_async] = ACTIONS(670), [anon_sym_const] = ACTIONS(913), - [anon_sym_default] = ACTIONS(652), + [anon_sym_default] = ACTIONS(670), [anon_sym_enum] = ACTIONS(915), [anon_sym_fn] = ACTIONS(917), [anon_sym_impl] = ACTIONS(919), @@ -32113,1404 +33364,156 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(949), [sym_block_comment] = ACTIONS(3), }, - [229] = { - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(403), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LBRACK] = ACTIONS(403), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_QMARK] = ACTIONS(403), - [anon_sym_u8] = ACTIONS(405), - [anon_sym_i8] = ACTIONS(405), - [anon_sym_u16] = ACTIONS(405), - [anon_sym_i16] = ACTIONS(405), - [anon_sym_u32] = ACTIONS(405), - [anon_sym_i32] = ACTIONS(405), - [anon_sym_u64] = ACTIONS(405), - [anon_sym_i64] = ACTIONS(405), - [anon_sym_u128] = ACTIONS(405), - [anon_sym_i128] = ACTIONS(405), - [anon_sym_isize] = ACTIONS(405), - [anon_sym_usize] = ACTIONS(405), - [anon_sym_f32] = ACTIONS(405), - [anon_sym_f64] = ACTIONS(405), - [anon_sym_bool] = ACTIONS(405), - [anon_sym_str] = ACTIONS(405), - [anon_sym_char] = ACTIONS(405), - [anon_sym_as] = ACTIONS(405), - [anon_sym_const] = ACTIONS(405), - [anon_sym_POUND] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(405), - [anon_sym_COMMA] = ACTIONS(403), - [anon_sym_ref] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(405), - [anon_sym_GT] = ACTIONS(405), - [anon_sym_COLON_COLON] = ACTIONS(403), - [anon_sym__] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(403), - [sym_mutable_specifier] = ACTIONS(405), - [anon_sym_DOT_DOT] = ACTIONS(405), - [anon_sym_DOT_DOT_EQ] = ACTIONS(403), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(405), - [anon_sym_CARET] = ACTIONS(405), - [anon_sym_EQ_EQ] = ACTIONS(403), - [anon_sym_BANG_EQ] = ACTIONS(403), - [anon_sym_LT_EQ] = ACTIONS(403), - [anon_sym_GT_EQ] = ACTIONS(403), - [anon_sym_LT_LT] = ACTIONS(405), - [anon_sym_GT_GT] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_PERCENT] = ACTIONS(405), - [anon_sym_PLUS_EQ] = ACTIONS(403), - [anon_sym_DASH_EQ] = ACTIONS(403), - [anon_sym_STAR_EQ] = ACTIONS(403), - [anon_sym_SLASH_EQ] = ACTIONS(403), - [anon_sym_PERCENT_EQ] = ACTIONS(403), - [anon_sym_AMP_EQ] = ACTIONS(403), - [anon_sym_PIPE_EQ] = ACTIONS(403), - [anon_sym_CARET_EQ] = ACTIONS(403), - [anon_sym_LT_LT_EQ] = ACTIONS(403), - [anon_sym_GT_GT_EQ] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(405), - [sym_integer_literal] = ACTIONS(403), - [aux_sym_string_literal_token1] = ACTIONS(403), - [sym_char_literal] = ACTIONS(403), - [anon_sym_true] = ACTIONS(405), - [anon_sym_false] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(405), - [sym_super] = ACTIONS(405), - [sym_crate] = ACTIONS(405), - [sym_metavariable] = ACTIONS(403), - [sym_raw_string_literal] = ACTIONS(403), - [sym_float_literal] = ACTIONS(403), - [sym_block_comment] = ACTIONS(3), - }, - [230] = { - [sym_identifier] = ACTIONS(957), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u128] = ACTIONS(957), - [anon_sym_i128] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_str] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_as] = ACTIONS(548), - [anon_sym_const] = ACTIONS(957), - [anon_sym_POUND] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_ref] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(959), - [anon_sym__] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [sym_mutable_specifier] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(959), - [aux_sym_string_literal_token1] = ACTIONS(959), - [sym_char_literal] = ACTIONS(959), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_crate] = ACTIONS(957), - [sym_metavariable] = ACTIONS(959), - [sym_raw_string_literal] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), - [sym_block_comment] = ACTIONS(3), - }, - [231] = { - [sym_identifier] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_LBRACK] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(552), - [anon_sym_STAR] = ACTIONS(552), - [anon_sym_QMARK] = ACTIONS(550), - [anon_sym_u8] = ACTIONS(552), - [anon_sym_i8] = ACTIONS(552), - [anon_sym_u16] = ACTIONS(552), - [anon_sym_i16] = ACTIONS(552), - [anon_sym_u32] = ACTIONS(552), - [anon_sym_i32] = ACTIONS(552), - [anon_sym_u64] = ACTIONS(552), - [anon_sym_i64] = ACTIONS(552), - [anon_sym_u128] = ACTIONS(552), - [anon_sym_i128] = ACTIONS(552), - [anon_sym_isize] = ACTIONS(552), - [anon_sym_usize] = ACTIONS(552), - [anon_sym_f32] = ACTIONS(552), - [anon_sym_f64] = ACTIONS(552), - [anon_sym_bool] = ACTIONS(552), - [anon_sym_str] = ACTIONS(552), - [anon_sym_char] = ACTIONS(552), - [anon_sym_as] = ACTIONS(552), - [anon_sym_const] = ACTIONS(552), - [anon_sym_POUND] = ACTIONS(550), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(550), - [anon_sym_ref] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(552), - [anon_sym_GT] = ACTIONS(552), - [anon_sym_COLON_COLON] = ACTIONS(550), - [anon_sym__] = ACTIONS(552), - [anon_sym_AMP] = ACTIONS(552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(550), - [sym_mutable_specifier] = ACTIONS(552), - [anon_sym_DOT_DOT] = ACTIONS(552), - [anon_sym_DOT_DOT_EQ] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(552), - [anon_sym_AMP_AMP] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(550), - [anon_sym_PIPE] = ACTIONS(552), - [anon_sym_CARET] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(550), - [anon_sym_BANG_EQ] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(550), - [anon_sym_GT_EQ] = ACTIONS(550), - [anon_sym_LT_LT] = ACTIONS(552), - [anon_sym_GT_GT] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(552), - [anon_sym_PERCENT] = ACTIONS(552), - [anon_sym_PLUS_EQ] = ACTIONS(550), - [anon_sym_DASH_EQ] = ACTIONS(550), - [anon_sym_STAR_EQ] = ACTIONS(550), - [anon_sym_SLASH_EQ] = ACTIONS(550), - [anon_sym_PERCENT_EQ] = ACTIONS(550), - [anon_sym_AMP_EQ] = ACTIONS(550), - [anon_sym_PIPE_EQ] = ACTIONS(550), - [anon_sym_CARET_EQ] = ACTIONS(550), - [anon_sym_LT_LT_EQ] = ACTIONS(550), - [anon_sym_GT_GT_EQ] = ACTIONS(550), - [anon_sym_DOT] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(550), - [aux_sym_string_literal_token1] = ACTIONS(550), - [sym_char_literal] = ACTIONS(550), - [anon_sym_true] = ACTIONS(552), - [anon_sym_false] = ACTIONS(552), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(552), - [sym_super] = ACTIONS(552), - [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(550), - [sym_raw_string_literal] = ACTIONS(550), - [sym_float_literal] = ACTIONS(550), - [sym_block_comment] = ACTIONS(3), - }, - [232] = { - [sym_identifier] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(576), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_LBRACK] = ACTIONS(576), - [anon_sym_PLUS] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(578), - [anon_sym_i8] = ACTIONS(578), - [anon_sym_u16] = ACTIONS(578), - [anon_sym_i16] = ACTIONS(578), - [anon_sym_u32] = ACTIONS(578), - [anon_sym_i32] = ACTIONS(578), - [anon_sym_u64] = ACTIONS(578), - [anon_sym_i64] = ACTIONS(578), - [anon_sym_u128] = ACTIONS(578), - [anon_sym_i128] = ACTIONS(578), - [anon_sym_isize] = ACTIONS(578), - [anon_sym_usize] = ACTIONS(578), - [anon_sym_f32] = ACTIONS(578), - [anon_sym_f64] = ACTIONS(578), - [anon_sym_bool] = ACTIONS(578), - [anon_sym_str] = ACTIONS(578), - [anon_sym_char] = ACTIONS(578), - [anon_sym_as] = ACTIONS(578), - [anon_sym_const] = ACTIONS(578), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_ref] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(578), - [anon_sym_GT] = ACTIONS(578), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym__] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [sym_mutable_specifier] = ACTIONS(578), - [anon_sym_DOT_DOT] = ACTIONS(578), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_DASH] = ACTIONS(578), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_PIPE] = ACTIONS(578), - [anon_sym_CARET] = ACTIONS(578), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(578), - [anon_sym_PERCENT] = ACTIONS(578), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_DOT] = ACTIONS(578), - [sym_integer_literal] = ACTIONS(576), - [aux_sym_string_literal_token1] = ACTIONS(576), - [sym_char_literal] = ACTIONS(576), - [anon_sym_true] = ACTIONS(578), - [anon_sym_false] = ACTIONS(578), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(578), - [sym_super] = ACTIONS(578), - [sym_crate] = ACTIONS(578), - [sym_metavariable] = ACTIONS(576), - [sym_raw_string_literal] = ACTIONS(576), - [sym_float_literal] = ACTIONS(576), - [sym_block_comment] = ACTIONS(3), - }, - [233] = { - [sym_identifier] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(429), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LBRACK] = ACTIONS(429), - [anon_sym_PLUS] = ACTIONS(431), - [anon_sym_STAR] = ACTIONS(431), - [anon_sym_QMARK] = ACTIONS(429), - [anon_sym_u8] = ACTIONS(431), - [anon_sym_i8] = ACTIONS(431), - [anon_sym_u16] = ACTIONS(431), - [anon_sym_i16] = ACTIONS(431), - [anon_sym_u32] = ACTIONS(431), - [anon_sym_i32] = ACTIONS(431), - [anon_sym_u64] = ACTIONS(431), - [anon_sym_i64] = ACTIONS(431), - [anon_sym_u128] = ACTIONS(431), - [anon_sym_i128] = ACTIONS(431), - [anon_sym_isize] = ACTIONS(431), - [anon_sym_usize] = ACTIONS(431), - [anon_sym_f32] = ACTIONS(431), - [anon_sym_f64] = ACTIONS(431), - [anon_sym_bool] = ACTIONS(431), - [anon_sym_str] = ACTIONS(431), - [anon_sym_char] = ACTIONS(431), - [anon_sym_as] = ACTIONS(431), - [anon_sym_const] = ACTIONS(431), - [anon_sym_POUND] = ACTIONS(429), - [anon_sym_EQ] = ACTIONS(431), - [anon_sym_COMMA] = ACTIONS(429), - [anon_sym_ref] = ACTIONS(431), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_COLON_COLON] = ACTIONS(429), - [anon_sym__] = ACTIONS(431), - [anon_sym_AMP] = ACTIONS(431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(429), - [sym_mutable_specifier] = ACTIONS(431), - [anon_sym_DOT_DOT] = ACTIONS(431), - [anon_sym_DOT_DOT_EQ] = ACTIONS(429), - [anon_sym_DASH] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(429), - [anon_sym_PIPE_PIPE] = ACTIONS(429), - [anon_sym_PIPE] = ACTIONS(431), - [anon_sym_CARET] = ACTIONS(431), - [anon_sym_EQ_EQ] = ACTIONS(429), - [anon_sym_BANG_EQ] = ACTIONS(429), - [anon_sym_LT_EQ] = ACTIONS(429), - [anon_sym_GT_EQ] = ACTIONS(429), - [anon_sym_LT_LT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_SLASH] = ACTIONS(431), - [anon_sym_PERCENT] = ACTIONS(431), - [anon_sym_PLUS_EQ] = ACTIONS(429), - [anon_sym_DASH_EQ] = ACTIONS(429), - [anon_sym_STAR_EQ] = ACTIONS(429), - [anon_sym_SLASH_EQ] = ACTIONS(429), - [anon_sym_PERCENT_EQ] = ACTIONS(429), - [anon_sym_AMP_EQ] = ACTIONS(429), - [anon_sym_PIPE_EQ] = ACTIONS(429), - [anon_sym_CARET_EQ] = ACTIONS(429), - [anon_sym_LT_LT_EQ] = ACTIONS(429), - [anon_sym_GT_GT_EQ] = ACTIONS(429), - [anon_sym_DOT] = ACTIONS(431), - [sym_integer_literal] = ACTIONS(429), - [aux_sym_string_literal_token1] = ACTIONS(429), - [sym_char_literal] = ACTIONS(429), - [anon_sym_true] = ACTIONS(431), - [anon_sym_false] = ACTIONS(431), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(431), - [sym_super] = ACTIONS(431), - [sym_crate] = ACTIONS(431), - [sym_metavariable] = ACTIONS(429), - [sym_raw_string_literal] = ACTIONS(429), - [sym_float_literal] = ACTIONS(429), - [sym_block_comment] = ACTIONS(3), - }, - [234] = { - [sym_identifier] = ACTIONS(598), - [anon_sym_LPAREN] = ACTIONS(596), - [anon_sym_RBRACE] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_PLUS] = ACTIONS(598), - [anon_sym_STAR] = ACTIONS(598), - [anon_sym_QMARK] = ACTIONS(596), - [anon_sym_u8] = ACTIONS(598), - [anon_sym_i8] = ACTIONS(598), - [anon_sym_u16] = ACTIONS(598), - [anon_sym_i16] = ACTIONS(598), - [anon_sym_u32] = ACTIONS(598), - [anon_sym_i32] = ACTIONS(598), - [anon_sym_u64] = ACTIONS(598), - [anon_sym_i64] = ACTIONS(598), - [anon_sym_u128] = ACTIONS(598), - [anon_sym_i128] = ACTIONS(598), - [anon_sym_isize] = ACTIONS(598), - [anon_sym_usize] = ACTIONS(598), - [anon_sym_f32] = ACTIONS(598), - [anon_sym_f64] = ACTIONS(598), - [anon_sym_bool] = ACTIONS(598), - [anon_sym_str] = ACTIONS(598), - [anon_sym_char] = ACTIONS(598), - [anon_sym_as] = ACTIONS(598), - [anon_sym_const] = ACTIONS(598), - [anon_sym_POUND] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(596), - [anon_sym_ref] = ACTIONS(598), - [anon_sym_LT] = ACTIONS(598), - [anon_sym_GT] = ACTIONS(598), - [anon_sym_COLON_COLON] = ACTIONS(596), - [anon_sym__] = ACTIONS(598), - [anon_sym_AMP] = ACTIONS(598), - [anon_sym_DOT_DOT_DOT] = ACTIONS(596), - [sym_mutable_specifier] = ACTIONS(598), - [anon_sym_DOT_DOT] = ACTIONS(598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(596), - [anon_sym_DASH] = ACTIONS(598), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(598), - [anon_sym_CARET] = ACTIONS(598), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_LT_LT] = ACTIONS(598), - [anon_sym_GT_GT] = ACTIONS(598), - [anon_sym_SLASH] = ACTIONS(598), - [anon_sym_PERCENT] = ACTIONS(598), - [anon_sym_PLUS_EQ] = ACTIONS(596), - [anon_sym_DASH_EQ] = ACTIONS(596), - [anon_sym_STAR_EQ] = ACTIONS(596), - [anon_sym_SLASH_EQ] = ACTIONS(596), - [anon_sym_PERCENT_EQ] = ACTIONS(596), - [anon_sym_AMP_EQ] = ACTIONS(596), - [anon_sym_PIPE_EQ] = ACTIONS(596), - [anon_sym_CARET_EQ] = ACTIONS(596), - [anon_sym_LT_LT_EQ] = ACTIONS(596), - [anon_sym_GT_GT_EQ] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(598), - [sym_integer_literal] = ACTIONS(596), - [aux_sym_string_literal_token1] = ACTIONS(596), - [sym_char_literal] = ACTIONS(596), - [anon_sym_true] = ACTIONS(598), - [anon_sym_false] = ACTIONS(598), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(598), - [sym_super] = ACTIONS(598), - [sym_crate] = ACTIONS(598), - [sym_metavariable] = ACTIONS(596), - [sym_raw_string_literal] = ACTIONS(596), - [sym_float_literal] = ACTIONS(596), - [sym_block_comment] = ACTIONS(3), - }, - [235] = { - [sym_identifier] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(409), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LBRACK] = ACTIONS(409), - [anon_sym_PLUS] = ACTIONS(411), - [anon_sym_STAR] = ACTIONS(411), - [anon_sym_QMARK] = ACTIONS(409), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_as] = ACTIONS(411), - [anon_sym_const] = ACTIONS(411), - [anon_sym_POUND] = ACTIONS(409), - [anon_sym_EQ] = ACTIONS(411), - [anon_sym_COMMA] = ACTIONS(409), - [anon_sym_ref] = ACTIONS(411), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_COLON_COLON] = ACTIONS(409), - [anon_sym__] = ACTIONS(411), - [anon_sym_AMP] = ACTIONS(411), - [anon_sym_DOT_DOT_DOT] = ACTIONS(409), - [sym_mutable_specifier] = ACTIONS(411), - [anon_sym_DOT_DOT] = ACTIONS(411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(411), - [anon_sym_AMP_AMP] = ACTIONS(409), - [anon_sym_PIPE_PIPE] = ACTIONS(409), - [anon_sym_PIPE] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(411), - [anon_sym_EQ_EQ] = ACTIONS(409), - [anon_sym_BANG_EQ] = ACTIONS(409), - [anon_sym_LT_EQ] = ACTIONS(409), - [anon_sym_GT_EQ] = ACTIONS(409), - [anon_sym_LT_LT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(411), - [anon_sym_SLASH] = ACTIONS(411), - [anon_sym_PERCENT] = ACTIONS(411), - [anon_sym_PLUS_EQ] = ACTIONS(409), - [anon_sym_DASH_EQ] = ACTIONS(409), - [anon_sym_STAR_EQ] = ACTIONS(409), - [anon_sym_SLASH_EQ] = ACTIONS(409), - [anon_sym_PERCENT_EQ] = ACTIONS(409), - [anon_sym_AMP_EQ] = ACTIONS(409), - [anon_sym_PIPE_EQ] = ACTIONS(409), - [anon_sym_CARET_EQ] = ACTIONS(409), - [anon_sym_LT_LT_EQ] = ACTIONS(409), - [anon_sym_GT_GT_EQ] = ACTIONS(409), - [anon_sym_DOT] = ACTIONS(411), - [sym_integer_literal] = ACTIONS(409), - [aux_sym_string_literal_token1] = ACTIONS(409), - [sym_char_literal] = ACTIONS(409), - [anon_sym_true] = ACTIONS(411), - [anon_sym_false] = ACTIONS(411), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(411), - [sym_super] = ACTIONS(411), - [sym_crate] = ACTIONS(411), - [sym_metavariable] = ACTIONS(409), - [sym_raw_string_literal] = ACTIONS(409), - [sym_float_literal] = ACTIONS(409), - [sym_block_comment] = ACTIONS(3), - }, - [236] = { - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(548), - [anon_sym_QMARK] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_as] = ACTIONS(548), - [anon_sym_const] = ACTIONS(961), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(548), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_ref] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(548), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(546), - [sym_mutable_specifier] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_CARET] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(546), - [anon_sym_BANG_EQ] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(546), - [anon_sym_GT_EQ] = ACTIONS(546), - [anon_sym_LT_LT] = ACTIONS(548), - [anon_sym_GT_GT] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(548), - [anon_sym_PERCENT] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(546), - [anon_sym_DASH_EQ] = ACTIONS(546), - [anon_sym_STAR_EQ] = ACTIONS(546), - [anon_sym_SLASH_EQ] = ACTIONS(546), - [anon_sym_PERCENT_EQ] = ACTIONS(546), - [anon_sym_AMP_EQ] = ACTIONS(546), - [anon_sym_PIPE_EQ] = ACTIONS(546), - [anon_sym_CARET_EQ] = ACTIONS(546), - [anon_sym_LT_LT_EQ] = ACTIONS(546), - [anon_sym_GT_GT_EQ] = ACTIONS(546), - [anon_sym_DOT] = ACTIONS(548), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym_raw_string_literal] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), - [sym_block_comment] = ACTIONS(3), - }, - [237] = { - [sym_identifier] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(413), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LBRACK] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_QMARK] = ACTIONS(413), - [anon_sym_u8] = ACTIONS(415), - [anon_sym_i8] = ACTIONS(415), - [anon_sym_u16] = ACTIONS(415), - [anon_sym_i16] = ACTIONS(415), - [anon_sym_u32] = ACTIONS(415), - [anon_sym_i32] = ACTIONS(415), - [anon_sym_u64] = ACTIONS(415), - [anon_sym_i64] = ACTIONS(415), - [anon_sym_u128] = ACTIONS(415), - [anon_sym_i128] = ACTIONS(415), - [anon_sym_isize] = ACTIONS(415), - [anon_sym_usize] = ACTIONS(415), - [anon_sym_f32] = ACTIONS(415), - [anon_sym_f64] = ACTIONS(415), - [anon_sym_bool] = ACTIONS(415), - [anon_sym_str] = ACTIONS(415), - [anon_sym_char] = ACTIONS(415), - [anon_sym_as] = ACTIONS(415), - [anon_sym_const] = ACTIONS(415), - [anon_sym_POUND] = ACTIONS(413), - [anon_sym_EQ] = ACTIONS(415), - [anon_sym_COMMA] = ACTIONS(413), - [anon_sym_ref] = ACTIONS(415), - [anon_sym_LT] = ACTIONS(415), - [anon_sym_GT] = ACTIONS(415), - [anon_sym_COLON_COLON] = ACTIONS(413), - [anon_sym__] = ACTIONS(415), - [anon_sym_AMP] = ACTIONS(415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(413), - [sym_mutable_specifier] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(415), - [anon_sym_DOT_DOT_EQ] = ACTIONS(413), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_AMP_AMP] = ACTIONS(413), - [anon_sym_PIPE_PIPE] = ACTIONS(413), - [anon_sym_PIPE] = ACTIONS(415), - [anon_sym_CARET] = ACTIONS(415), - [anon_sym_EQ_EQ] = ACTIONS(413), - [anon_sym_BANG_EQ] = ACTIONS(413), - [anon_sym_LT_EQ] = ACTIONS(413), - [anon_sym_GT_EQ] = ACTIONS(413), - [anon_sym_LT_LT] = ACTIONS(415), - [anon_sym_GT_GT] = ACTIONS(415), - [anon_sym_SLASH] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(415), - [anon_sym_PLUS_EQ] = ACTIONS(413), - [anon_sym_DASH_EQ] = ACTIONS(413), - [anon_sym_STAR_EQ] = ACTIONS(413), - [anon_sym_SLASH_EQ] = ACTIONS(413), - [anon_sym_PERCENT_EQ] = ACTIONS(413), - [anon_sym_AMP_EQ] = ACTIONS(413), - [anon_sym_PIPE_EQ] = ACTIONS(413), - [anon_sym_CARET_EQ] = ACTIONS(413), - [anon_sym_LT_LT_EQ] = ACTIONS(413), - [anon_sym_GT_GT_EQ] = ACTIONS(413), - [anon_sym_DOT] = ACTIONS(415), - [sym_integer_literal] = ACTIONS(413), - [aux_sym_string_literal_token1] = ACTIONS(413), - [sym_char_literal] = ACTIONS(413), - [anon_sym_true] = ACTIONS(415), - [anon_sym_false] = ACTIONS(415), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(415), - [sym_super] = ACTIONS(415), - [sym_crate] = ACTIONS(415), - [sym_metavariable] = ACTIONS(413), - [sym_raw_string_literal] = ACTIONS(413), - [sym_float_literal] = ACTIONS(413), - [sym_block_comment] = ACTIONS(3), - }, - [238] = { - [sym_identifier] = ACTIONS(590), - [anon_sym_LPAREN] = ACTIONS(588), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_LBRACK] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(590), - [anon_sym_STAR] = ACTIONS(590), - [anon_sym_QMARK] = ACTIONS(588), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_POUND] = ACTIONS(588), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(588), - [anon_sym_ref] = ACTIONS(590), - [anon_sym_LT] = ACTIONS(590), - [anon_sym_GT] = ACTIONS(590), - [anon_sym_COLON_COLON] = ACTIONS(588), - [anon_sym__] = ACTIONS(590), - [anon_sym_AMP] = ACTIONS(590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(588), - [sym_mutable_specifier] = ACTIONS(590), - [anon_sym_DOT_DOT] = ACTIONS(590), - [anon_sym_DOT_DOT_EQ] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(590), - [anon_sym_AMP_AMP] = ACTIONS(588), - [anon_sym_PIPE_PIPE] = ACTIONS(588), - [anon_sym_PIPE] = ACTIONS(590), - [anon_sym_CARET] = ACTIONS(590), - [anon_sym_EQ_EQ] = ACTIONS(588), - [anon_sym_BANG_EQ] = ACTIONS(588), - [anon_sym_LT_EQ] = ACTIONS(588), - [anon_sym_GT_EQ] = ACTIONS(588), - [anon_sym_LT_LT] = ACTIONS(590), - [anon_sym_GT_GT] = ACTIONS(590), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(590), - [anon_sym_PLUS_EQ] = ACTIONS(588), - [anon_sym_DASH_EQ] = ACTIONS(588), - [anon_sym_STAR_EQ] = ACTIONS(588), - [anon_sym_SLASH_EQ] = ACTIONS(588), - [anon_sym_PERCENT_EQ] = ACTIONS(588), - [anon_sym_AMP_EQ] = ACTIONS(588), - [anon_sym_PIPE_EQ] = ACTIONS(588), - [anon_sym_CARET_EQ] = ACTIONS(588), - [anon_sym_LT_LT_EQ] = ACTIONS(588), - [anon_sym_GT_GT_EQ] = ACTIONS(588), - [anon_sym_DOT] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(588), - [aux_sym_string_literal_token1] = ACTIONS(588), - [sym_char_literal] = ACTIONS(588), - [anon_sym_true] = ACTIONS(590), - [anon_sym_false] = ACTIONS(590), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(588), - [sym_raw_string_literal] = ACTIONS(588), - [sym_float_literal] = ACTIONS(588), - [sym_block_comment] = ACTIONS(3), - }, - [239] = { - [sym_identifier] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(443), - [anon_sym_STAR] = ACTIONS(443), - [anon_sym_QMARK] = ACTIONS(441), - [anon_sym_u8] = ACTIONS(443), - [anon_sym_i8] = ACTIONS(443), - [anon_sym_u16] = ACTIONS(443), - [anon_sym_i16] = ACTIONS(443), - [anon_sym_u32] = ACTIONS(443), - [anon_sym_i32] = ACTIONS(443), - [anon_sym_u64] = ACTIONS(443), - [anon_sym_i64] = ACTIONS(443), - [anon_sym_u128] = ACTIONS(443), - [anon_sym_i128] = ACTIONS(443), - [anon_sym_isize] = ACTIONS(443), - [anon_sym_usize] = ACTIONS(443), - [anon_sym_f32] = ACTIONS(443), - [anon_sym_f64] = ACTIONS(443), - [anon_sym_bool] = ACTIONS(443), - [anon_sym_str] = ACTIONS(443), - [anon_sym_char] = ACTIONS(443), - [anon_sym_as] = ACTIONS(443), - [anon_sym_const] = ACTIONS(443), - [anon_sym_POUND] = ACTIONS(441), - [anon_sym_EQ] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(441), - [anon_sym_ref] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(443), - [anon_sym_GT] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(441), - [anon_sym__] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(443), - [anon_sym_DOT_DOT_DOT] = ACTIONS(441), - [sym_mutable_specifier] = ACTIONS(443), - [anon_sym_DOT_DOT] = ACTIONS(443), - [anon_sym_DOT_DOT_EQ] = ACTIONS(441), - [anon_sym_DASH] = ACTIONS(443), - [anon_sym_AMP_AMP] = ACTIONS(441), - [anon_sym_PIPE_PIPE] = ACTIONS(441), - [anon_sym_PIPE] = ACTIONS(443), - [anon_sym_CARET] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_LT_EQ] = ACTIONS(441), - [anon_sym_GT_EQ] = ACTIONS(441), - [anon_sym_LT_LT] = ACTIONS(443), - [anon_sym_GT_GT] = ACTIONS(443), - [anon_sym_SLASH] = ACTIONS(443), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_PLUS_EQ] = ACTIONS(441), - [anon_sym_DASH_EQ] = ACTIONS(441), - [anon_sym_STAR_EQ] = ACTIONS(441), - [anon_sym_SLASH_EQ] = ACTIONS(441), - [anon_sym_PERCENT_EQ] = ACTIONS(441), - [anon_sym_AMP_EQ] = ACTIONS(441), - [anon_sym_PIPE_EQ] = ACTIONS(441), - [anon_sym_CARET_EQ] = ACTIONS(441), - [anon_sym_LT_LT_EQ] = ACTIONS(441), - [anon_sym_GT_GT_EQ] = ACTIONS(441), - [anon_sym_DOT] = ACTIONS(443), - [sym_integer_literal] = ACTIONS(441), - [aux_sym_string_literal_token1] = ACTIONS(441), - [sym_char_literal] = ACTIONS(441), - [anon_sym_true] = ACTIONS(443), - [anon_sym_false] = ACTIONS(443), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(443), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(441), - [sym_raw_string_literal] = ACTIONS(441), - [sym_float_literal] = ACTIONS(441), - [sym_block_comment] = ACTIONS(3), - }, - [240] = { - [sym_empty_statement] = STATE(240), - [sym_macro_definition] = STATE(240), - [sym_attribute_item] = STATE(240), - [sym_inner_attribute_item] = STATE(240), - [sym_mod_item] = STATE(240), - [sym_foreign_mod_item] = STATE(240), - [sym_struct_item] = STATE(240), - [sym_union_item] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_extern_crate_declaration] = STATE(240), - [sym_const_item] = STATE(240), - [sym_static_item] = STATE(240), - [sym_type_item] = STATE(240), - [sym_function_item] = STATE(240), - [sym_function_signature_item] = STATE(240), - [sym_function_modifiers] = STATE(2396), - [sym_impl_item] = STATE(240), - [sym_trait_item] = STATE(240), - [sym_associated_type] = STATE(240), - [sym_let_declaration] = STATE(240), - [sym_use_declaration] = STATE(240), - [sym_extern_modifier] = STATE(1420), - [sym_visibility_modifier] = STATE(1255), - [sym_bracketed_type] = STATE(2224), - [sym_generic_type_with_turbofish] = STATE(2226), - [sym_macro_invocation] = STATE(240), - [sym_scoped_identifier] = STATE(2162), - [aux_sym_declaration_list_repeat1] = STATE(240), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_macro_rules_BANG] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(976), - [anon_sym_i8] = ACTIONS(976), - [anon_sym_u16] = ACTIONS(976), - [anon_sym_i16] = ACTIONS(976), - [anon_sym_u32] = ACTIONS(976), - [anon_sym_i32] = ACTIONS(976), - [anon_sym_u64] = ACTIONS(976), - [anon_sym_i64] = ACTIONS(976), - [anon_sym_u128] = ACTIONS(976), - [anon_sym_i128] = ACTIONS(976), - [anon_sym_isize] = ACTIONS(976), - [anon_sym_usize] = ACTIONS(976), - [anon_sym_f32] = ACTIONS(976), - [anon_sym_f64] = ACTIONS(976), - [anon_sym_bool] = ACTIONS(976), - [anon_sym_str] = ACTIONS(976), - [anon_sym_char] = ACTIONS(976), - [anon_sym_async] = ACTIONS(979), - [anon_sym_const] = ACTIONS(982), - [anon_sym_default] = ACTIONS(979), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(988), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(994), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(1003), - [anon_sym_struct] = ACTIONS(1006), - [anon_sym_trait] = ACTIONS(1009), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1015), - [anon_sym_unsafe] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_POUND] = ACTIONS(1024), - [anon_sym_extern] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_COLON_COLON] = ACTIONS(1033), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1036), - [sym_super] = ACTIONS(1036), - [sym_crate] = ACTIONS(1039), - [sym_metavariable] = ACTIONS(1042), - [sym_block_comment] = ACTIONS(3), - }, - [241] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1828), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1825), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_type_binding] = STATE(2166), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [sym_block] = STATE(2166), - [sym__literal] = STATE(2166), - [sym_string_literal] = STATE(2142), - [sym_boolean_literal] = STATE(2142), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(844), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(650), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_integer_literal] = ACTIONS(860), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(860), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), - [sym_raw_string_literal] = ACTIONS(860), - [sym_float_literal] = ACTIONS(860), - [sym_block_comment] = ACTIONS(3), - }, - [242] = { - [sym_identifier] = ACTIONS(582), - [anon_sym_LPAREN] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(582), - [anon_sym_STAR] = ACTIONS(582), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_u8] = ACTIONS(582), - [anon_sym_i8] = ACTIONS(582), - [anon_sym_u16] = ACTIONS(582), - [anon_sym_i16] = ACTIONS(582), - [anon_sym_u32] = ACTIONS(582), - [anon_sym_i32] = ACTIONS(582), - [anon_sym_u64] = ACTIONS(582), - [anon_sym_i64] = ACTIONS(582), - [anon_sym_u128] = ACTIONS(582), - [anon_sym_i128] = ACTIONS(582), - [anon_sym_isize] = ACTIONS(582), - [anon_sym_usize] = ACTIONS(582), - [anon_sym_f32] = ACTIONS(582), - [anon_sym_f64] = ACTIONS(582), - [anon_sym_bool] = ACTIONS(582), - [anon_sym_str] = ACTIONS(582), - [anon_sym_char] = ACTIONS(582), - [anon_sym_as] = ACTIONS(582), - [anon_sym_const] = ACTIONS(582), - [anon_sym_POUND] = ACTIONS(580), - [anon_sym_EQ] = ACTIONS(582), - [anon_sym_COMMA] = ACTIONS(580), - [anon_sym_ref] = ACTIONS(582), - [anon_sym_LT] = ACTIONS(582), - [anon_sym_GT] = ACTIONS(582), - [anon_sym_COLON_COLON] = ACTIONS(580), - [anon_sym__] = ACTIONS(582), - [anon_sym_AMP] = ACTIONS(582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(580), - [sym_mutable_specifier] = ACTIONS(582), - [anon_sym_DOT_DOT] = ACTIONS(582), - [anon_sym_DOT_DOT_EQ] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_AMP_AMP] = ACTIONS(580), - [anon_sym_PIPE_PIPE] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(582), - [anon_sym_CARET] = ACTIONS(582), - [anon_sym_EQ_EQ] = ACTIONS(580), - [anon_sym_BANG_EQ] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(582), - [anon_sym_GT_GT] = ACTIONS(582), - [anon_sym_SLASH] = ACTIONS(582), - [anon_sym_PERCENT] = ACTIONS(582), - [anon_sym_PLUS_EQ] = ACTIONS(580), - [anon_sym_DASH_EQ] = ACTIONS(580), - [anon_sym_STAR_EQ] = ACTIONS(580), - [anon_sym_SLASH_EQ] = ACTIONS(580), - [anon_sym_PERCENT_EQ] = ACTIONS(580), - [anon_sym_AMP_EQ] = ACTIONS(580), - [anon_sym_PIPE_EQ] = ACTIONS(580), - [anon_sym_CARET_EQ] = ACTIONS(580), - [anon_sym_LT_LT_EQ] = ACTIONS(580), - [anon_sym_GT_GT_EQ] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(582), - [sym_integer_literal] = ACTIONS(580), - [aux_sym_string_literal_token1] = ACTIONS(580), - [sym_char_literal] = ACTIONS(580), - [anon_sym_true] = ACTIONS(582), - [anon_sym_false] = ACTIONS(582), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(582), - [sym_super] = ACTIONS(582), - [sym_crate] = ACTIONS(582), - [sym_metavariable] = ACTIONS(580), - [sym_raw_string_literal] = ACTIONS(580), - [sym_float_literal] = ACTIONS(580), - [sym_block_comment] = ACTIONS(3), - }, - [243] = { - [sym_identifier] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(584), - [anon_sym_u8] = ACTIONS(586), - [anon_sym_i8] = ACTIONS(586), - [anon_sym_u16] = ACTIONS(586), - [anon_sym_i16] = ACTIONS(586), - [anon_sym_u32] = ACTIONS(586), - [anon_sym_i32] = ACTIONS(586), - [anon_sym_u64] = ACTIONS(586), - [anon_sym_i64] = ACTIONS(586), - [anon_sym_u128] = ACTIONS(586), - [anon_sym_i128] = ACTIONS(586), - [anon_sym_isize] = ACTIONS(586), - [anon_sym_usize] = ACTIONS(586), - [anon_sym_f32] = ACTIONS(586), - [anon_sym_f64] = ACTIONS(586), - [anon_sym_bool] = ACTIONS(586), - [anon_sym_str] = ACTIONS(586), - [anon_sym_char] = ACTIONS(586), - [anon_sym_as] = ACTIONS(586), - [anon_sym_const] = ACTIONS(586), - [anon_sym_POUND] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(584), - [anon_sym_ref] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_COLON_COLON] = ACTIONS(584), - [anon_sym__] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(584), - [sym_mutable_specifier] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(584), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(584), - [anon_sym_DASH_EQ] = ACTIONS(584), - [anon_sym_STAR_EQ] = ACTIONS(584), - [anon_sym_SLASH_EQ] = ACTIONS(584), - [anon_sym_PERCENT_EQ] = ACTIONS(584), - [anon_sym_AMP_EQ] = ACTIONS(584), - [anon_sym_PIPE_EQ] = ACTIONS(584), - [anon_sym_CARET_EQ] = ACTIONS(584), - [anon_sym_LT_LT_EQ] = ACTIONS(584), - [anon_sym_GT_GT_EQ] = ACTIONS(584), - [anon_sym_DOT] = ACTIONS(586), - [sym_integer_literal] = ACTIONS(584), - [aux_sym_string_literal_token1] = ACTIONS(584), - [sym_char_literal] = ACTIONS(584), - [anon_sym_true] = ACTIONS(586), - [anon_sym_false] = ACTIONS(586), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(586), - [sym_super] = ACTIONS(586), - [sym_crate] = ACTIONS(586), - [sym_metavariable] = ACTIONS(584), - [sym_raw_string_literal] = ACTIONS(584), - [sym_float_literal] = ACTIONS(584), - [sym_block_comment] = ACTIONS(3), - }, - [244] = { - [sym_identifier] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(437), - [anon_sym_u8] = ACTIONS(439), - [anon_sym_i8] = ACTIONS(439), - [anon_sym_u16] = ACTIONS(439), - [anon_sym_i16] = ACTIONS(439), - [anon_sym_u32] = ACTIONS(439), - [anon_sym_i32] = ACTIONS(439), - [anon_sym_u64] = ACTIONS(439), - [anon_sym_i64] = ACTIONS(439), - [anon_sym_u128] = ACTIONS(439), - [anon_sym_i128] = ACTIONS(439), - [anon_sym_isize] = ACTIONS(439), - [anon_sym_usize] = ACTIONS(439), - [anon_sym_f32] = ACTIONS(439), - [anon_sym_f64] = ACTIONS(439), - [anon_sym_bool] = ACTIONS(439), - [anon_sym_str] = ACTIONS(439), - [anon_sym_char] = ACTIONS(439), - [anon_sym_as] = ACTIONS(439), - [anon_sym_const] = ACTIONS(439), - [anon_sym_POUND] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_ref] = ACTIONS(439), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_COLON_COLON] = ACTIONS(437), - [anon_sym__] = ACTIONS(439), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(437), - [sym_mutable_specifier] = ACTIONS(439), - [anon_sym_DOT_DOT] = ACTIONS(439), - [anon_sym_DOT_DOT_EQ] = ACTIONS(437), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(437), - [anon_sym_PIPE_PIPE] = ACTIONS(437), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(439), - [anon_sym_EQ_EQ] = ACTIONS(437), - [anon_sym_BANG_EQ] = ACTIONS(437), - [anon_sym_LT_EQ] = ACTIONS(437), - [anon_sym_GT_EQ] = ACTIONS(437), - [anon_sym_LT_LT] = ACTIONS(439), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(439), - [anon_sym_PLUS_EQ] = ACTIONS(437), - [anon_sym_DASH_EQ] = ACTIONS(437), - [anon_sym_STAR_EQ] = ACTIONS(437), - [anon_sym_SLASH_EQ] = ACTIONS(437), - [anon_sym_PERCENT_EQ] = ACTIONS(437), - [anon_sym_AMP_EQ] = ACTIONS(437), - [anon_sym_PIPE_EQ] = ACTIONS(437), - [anon_sym_CARET_EQ] = ACTIONS(437), - [anon_sym_LT_LT_EQ] = ACTIONS(437), - [anon_sym_GT_GT_EQ] = ACTIONS(437), - [anon_sym_DOT] = ACTIONS(439), - [sym_integer_literal] = ACTIONS(437), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(437), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(439), - [sym_super] = ACTIONS(439), - [sym_crate] = ACTIONS(439), - [sym_metavariable] = ACTIONS(437), - [sym_raw_string_literal] = ACTIONS(437), - [sym_float_literal] = ACTIONS(437), - [sym_block_comment] = ACTIONS(3), - }, [245] = { - [sym__token_pattern] = STATE(332), - [sym_token_tree_pattern] = STATE(332), - [sym_token_binding_pattern] = STATE(332), - [sym_token_repetition_pattern] = STATE(332), - [sym__literal] = STATE(332), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(332), - [sym_identifier] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1049), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [aux_sym__non_special_token_token1] = ACTIONS(1045), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_where] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [sym_mutable_specifier] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1045), + [sym_identifier] = ACTIONS(1047), + [anon_sym_SEMI] = ACTIONS(1045), + [anon_sym_macro_rules_BANG] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(1045), + [anon_sym_LBRACE] = ACTIONS(1045), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_u8] = ACTIONS(1047), + [anon_sym_i8] = ACTIONS(1047), + [anon_sym_u16] = ACTIONS(1047), + [anon_sym_i16] = ACTIONS(1047), + [anon_sym_u32] = ACTIONS(1047), + [anon_sym_i32] = ACTIONS(1047), + [anon_sym_u64] = ACTIONS(1047), + [anon_sym_i64] = ACTIONS(1047), + [anon_sym_u128] = ACTIONS(1047), + [anon_sym_i128] = ACTIONS(1047), + [anon_sym_isize] = ACTIONS(1047), + [anon_sym_usize] = ACTIONS(1047), + [anon_sym_f32] = ACTIONS(1047), + [anon_sym_f64] = ACTIONS(1047), + [anon_sym_bool] = ACTIONS(1047), + [anon_sym_str] = ACTIONS(1047), + [anon_sym_char] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1047), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1047), + [anon_sym_const] = ACTIONS(1047), + [anon_sym_continue] = ACTIONS(1047), + [anon_sym_default] = ACTIONS(1047), + [anon_sym_enum] = ACTIONS(1047), + [anon_sym_fn] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(1047), + [anon_sym_if] = ACTIONS(1047), + [anon_sym_impl] = ACTIONS(1047), + [anon_sym_let] = ACTIONS(1047), + [anon_sym_loop] = ACTIONS(1047), + [anon_sym_match] = ACTIONS(1047), + [anon_sym_mod] = ACTIONS(1047), + [anon_sym_pub] = ACTIONS(1047), + [anon_sym_return] = ACTIONS(1047), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1047), + [anon_sym_trait] = ACTIONS(1047), + [anon_sym_type] = ACTIONS(1047), + [anon_sym_union] = ACTIONS(1047), + [anon_sym_unsafe] = ACTIONS(1047), + [anon_sym_use] = ACTIONS(1047), + [anon_sym_while] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1047), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_COLON_COLON] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1047), + [sym_integer_literal] = ACTIONS(1045), + [aux_sym_string_literal_token1] = ACTIONS(1045), + [sym_char_literal] = ACTIONS(1045), + [anon_sym_true] = ACTIONS(1047), + [anon_sym_false] = ACTIONS(1047), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1047), + [sym_super] = ACTIONS(1047), + [sym_crate] = ACTIONS(1047), + [sym_metavariable] = ACTIONS(1045), + [sym_raw_string_literal] = ACTIONS(1045), + [sym_float_literal] = ACTIONS(1045), [sym_block_comment] = ACTIONS(3), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(1065), - [sym_identifier] = ACTIONS(1067), - [anon_sym_SEMI] = ACTIONS(1065), - [anon_sym_macro_rules_BANG] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_LBRACE] = ACTIONS(1065), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_LBRACK] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1065), - [anon_sym_u8] = ACTIONS(1067), - [anon_sym_i8] = ACTIONS(1067), - [anon_sym_u16] = ACTIONS(1067), - [anon_sym_i16] = ACTIONS(1067), - [anon_sym_u32] = ACTIONS(1067), - [anon_sym_i32] = ACTIONS(1067), - [anon_sym_u64] = ACTIONS(1067), - [anon_sym_i64] = ACTIONS(1067), - [anon_sym_u128] = ACTIONS(1067), - [anon_sym_i128] = ACTIONS(1067), - [anon_sym_isize] = ACTIONS(1067), - [anon_sym_usize] = ACTIONS(1067), - [anon_sym_f32] = ACTIONS(1067), - [anon_sym_f64] = ACTIONS(1067), - [anon_sym_bool] = ACTIONS(1067), - [anon_sym_str] = ACTIONS(1067), - [anon_sym_char] = ACTIONS(1067), - [anon_sym_SQUOTE] = ACTIONS(1067), - [anon_sym_async] = ACTIONS(1067), - [anon_sym_break] = ACTIONS(1067), - [anon_sym_const] = ACTIONS(1067), - [anon_sym_continue] = ACTIONS(1067), - [anon_sym_default] = ACTIONS(1067), - [anon_sym_enum] = ACTIONS(1067), - [anon_sym_fn] = ACTIONS(1067), - [anon_sym_for] = ACTIONS(1067), - [anon_sym_if] = ACTIONS(1067), - [anon_sym_impl] = ACTIONS(1067), - [anon_sym_let] = ACTIONS(1067), - [anon_sym_loop] = ACTIONS(1067), - [anon_sym_match] = ACTIONS(1067), - [anon_sym_mod] = ACTIONS(1067), - [anon_sym_pub] = ACTIONS(1067), - [anon_sym_return] = ACTIONS(1067), - [anon_sym_static] = ACTIONS(1067), - [anon_sym_struct] = ACTIONS(1067), - [anon_sym_trait] = ACTIONS(1067), - [anon_sym_type] = ACTIONS(1067), - [anon_sym_union] = ACTIONS(1067), - [anon_sym_unsafe] = ACTIONS(1067), - [anon_sym_use] = ACTIONS(1067), - [anon_sym_while] = ACTIONS(1067), - [anon_sym_POUND] = ACTIONS(1065), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_extern] = ACTIONS(1067), - [anon_sym_LT] = ACTIONS(1065), - [anon_sym_COLON_COLON] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_DOT_DOT] = ACTIONS(1065), - [anon_sym_DASH] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_move] = ACTIONS(1067), - [sym_integer_literal] = ACTIONS(1065), - [aux_sym_string_literal_token1] = ACTIONS(1065), - [sym_char_literal] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(1067), - [anon_sym_false] = ACTIONS(1067), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1067), - [sym_super] = ACTIONS(1067), - [sym_crate] = ACTIONS(1067), - [sym_metavariable] = ACTIONS(1065), - [sym_raw_string_literal] = ACTIONS(1065), - [sym_float_literal] = ACTIONS(1065), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [247] = { @@ -33970,139 +33973,367 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(1093), - [sym_identifier] = ACTIONS(1095), - [anon_sym_SEMI] = ACTIONS(1093), - [anon_sym_macro_rules_BANG] = ACTIONS(1093), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_LBRACE] = ACTIONS(1093), - [anon_sym_RBRACE] = ACTIONS(1093), - [anon_sym_LBRACK] = ACTIONS(1093), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_u8] = ACTIONS(1095), - [anon_sym_i8] = ACTIONS(1095), - [anon_sym_u16] = ACTIONS(1095), - [anon_sym_i16] = ACTIONS(1095), - [anon_sym_u32] = ACTIONS(1095), - [anon_sym_i32] = ACTIONS(1095), - [anon_sym_u64] = ACTIONS(1095), - [anon_sym_i64] = ACTIONS(1095), - [anon_sym_u128] = ACTIONS(1095), - [anon_sym_i128] = ACTIONS(1095), - [anon_sym_isize] = ACTIONS(1095), - [anon_sym_usize] = ACTIONS(1095), - [anon_sym_f32] = ACTIONS(1095), - [anon_sym_f64] = ACTIONS(1095), - [anon_sym_bool] = ACTIONS(1095), - [anon_sym_str] = ACTIONS(1095), - [anon_sym_char] = ACTIONS(1095), - [anon_sym_SQUOTE] = ACTIONS(1095), - [anon_sym_async] = ACTIONS(1095), - [anon_sym_break] = ACTIONS(1095), - [anon_sym_const] = ACTIONS(1095), - [anon_sym_continue] = ACTIONS(1095), - [anon_sym_default] = ACTIONS(1095), - [anon_sym_enum] = ACTIONS(1095), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_for] = ACTIONS(1095), - [anon_sym_if] = ACTIONS(1095), - [anon_sym_impl] = ACTIONS(1095), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_loop] = ACTIONS(1095), - [anon_sym_match] = ACTIONS(1095), - [anon_sym_mod] = ACTIONS(1095), - [anon_sym_pub] = ACTIONS(1095), - [anon_sym_return] = ACTIONS(1095), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_struct] = ACTIONS(1095), - [anon_sym_trait] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_union] = ACTIONS(1095), - [anon_sym_unsafe] = ACTIONS(1095), - [anon_sym_use] = ACTIONS(1095), - [anon_sym_while] = ACTIONS(1095), - [anon_sym_POUND] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_extern] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1093), - [anon_sym_COLON_COLON] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1093), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_PIPE] = ACTIONS(1093), - [anon_sym_move] = ACTIONS(1095), - [sym_integer_literal] = ACTIONS(1093), - [aux_sym_string_literal_token1] = ACTIONS(1093), - [sym_char_literal] = ACTIONS(1093), - [anon_sym_true] = ACTIONS(1095), - [anon_sym_false] = ACTIONS(1095), + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_macro_rules_BANG] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(395), + [anon_sym_u8] = ACTIONS(397), + [anon_sym_i8] = ACTIONS(397), + [anon_sym_u16] = ACTIONS(397), + [anon_sym_i16] = ACTIONS(397), + [anon_sym_u32] = ACTIONS(397), + [anon_sym_i32] = ACTIONS(397), + [anon_sym_u64] = ACTIONS(397), + [anon_sym_i64] = ACTIONS(397), + [anon_sym_u128] = ACTIONS(397), + [anon_sym_i128] = ACTIONS(397), + [anon_sym_isize] = ACTIONS(397), + [anon_sym_usize] = ACTIONS(397), + [anon_sym_f32] = ACTIONS(397), + [anon_sym_f64] = ACTIONS(397), + [anon_sym_bool] = ACTIONS(397), + [anon_sym_str] = ACTIONS(397), + [anon_sym_char] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(397), + [anon_sym_async] = ACTIONS(397), + [anon_sym_break] = ACTIONS(397), + [anon_sym_const] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_default] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(397), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_for] = ACTIONS(397), + [anon_sym_if] = ACTIONS(397), + [anon_sym_impl] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_loop] = ACTIONS(397), + [anon_sym_match] = ACTIONS(397), + [anon_sym_mod] = ACTIONS(397), + [anon_sym_pub] = ACTIONS(397), + [anon_sym_return] = ACTIONS(397), + [anon_sym_static] = ACTIONS(397), + [anon_sym_struct] = ACTIONS(397), + [anon_sym_trait] = ACTIONS(397), + [anon_sym_type] = ACTIONS(397), + [anon_sym_union] = ACTIONS(397), + [anon_sym_unsafe] = ACTIONS(397), + [anon_sym_use] = ACTIONS(397), + [anon_sym_while] = ACTIONS(397), + [anon_sym_POUND] = ACTIONS(395), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_extern] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_COLON_COLON] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_move] = ACTIONS(397), + [sym_integer_literal] = ACTIONS(395), + [aux_sym_string_literal_token1] = ACTIONS(395), + [sym_char_literal] = ACTIONS(395), + [anon_sym_true] = ACTIONS(397), + [anon_sym_false] = ACTIONS(397), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1095), - [sym_super] = ACTIONS(1095), - [sym_crate] = ACTIONS(1095), - [sym_metavariable] = ACTIONS(1093), - [sym_raw_string_literal] = ACTIONS(1093), - [sym_float_literal] = ACTIONS(1093), + [sym_self] = ACTIONS(397), + [sym_super] = ACTIONS(397), + [sym_crate] = ACTIONS(397), + [sym_metavariable] = ACTIONS(395), + [sym_raw_string_literal] = ACTIONS(395), + [sym_float_literal] = ACTIONS(395), [sym_block_comment] = ACTIONS(3), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(1097), - [sym_identifier] = ACTIONS(1099), - [anon_sym_SEMI] = ACTIONS(1097), - [anon_sym_macro_rules_BANG] = ACTIONS(1097), - [anon_sym_LPAREN] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1097), - [anon_sym_RBRACE] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_u8] = ACTIONS(1099), - [anon_sym_i8] = ACTIONS(1099), - [anon_sym_u16] = ACTIONS(1099), - [anon_sym_i16] = ACTIONS(1099), - [anon_sym_u32] = ACTIONS(1099), - [anon_sym_i32] = ACTIONS(1099), - [anon_sym_u64] = ACTIONS(1099), - [anon_sym_i64] = ACTIONS(1099), - [anon_sym_u128] = ACTIONS(1099), - [anon_sym_i128] = ACTIONS(1099), - [anon_sym_isize] = ACTIONS(1099), - [anon_sym_usize] = ACTIONS(1099), - [anon_sym_f32] = ACTIONS(1099), - [anon_sym_f64] = ACTIONS(1099), - [anon_sym_bool] = ACTIONS(1099), - [anon_sym_str] = ACTIONS(1099), - [anon_sym_char] = ACTIONS(1099), - [anon_sym_SQUOTE] = ACTIONS(1099), - [anon_sym_async] = ACTIONS(1099), - [anon_sym_break] = ACTIONS(1099), - [anon_sym_const] = ACTIONS(1099), - [anon_sym_continue] = ACTIONS(1099), - [anon_sym_default] = ACTIONS(1099), - [anon_sym_enum] = ACTIONS(1099), - [anon_sym_fn] = ACTIONS(1099), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_if] = ACTIONS(1099), - [anon_sym_impl] = ACTIONS(1099), - [anon_sym_let] = ACTIONS(1099), - [anon_sym_loop] = ACTIONS(1099), - [anon_sym_match] = ACTIONS(1099), - [anon_sym_mod] = ACTIONS(1099), - [anon_sym_pub] = ACTIONS(1099), - [anon_sym_return] = ACTIONS(1099), - [anon_sym_static] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1099), - [anon_sym_trait] = ACTIONS(1099), - [anon_sym_type] = ACTIONS(1099), - [anon_sym_union] = ACTIONS(1099), - [anon_sym_unsafe] = ACTIONS(1099), - [anon_sym_use] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1099), - [anon_sym_POUND] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_extern] = ACTIONS(1099), - [anon_sym_LT] = ACTIONS(1097), - [anon_sym_COLON_COLON] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1097), + [ts_builtin_sym_end] = ACTIONS(387), + [sym_identifier] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_macro_rules_BANG] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(389), + [anon_sym_i8] = ACTIONS(389), + [anon_sym_u16] = ACTIONS(389), + [anon_sym_i16] = ACTIONS(389), + [anon_sym_u32] = ACTIONS(389), + [anon_sym_i32] = ACTIONS(389), + [anon_sym_u64] = ACTIONS(389), + [anon_sym_i64] = ACTIONS(389), + [anon_sym_u128] = ACTIONS(389), + [anon_sym_i128] = ACTIONS(389), + [anon_sym_isize] = ACTIONS(389), + [anon_sym_usize] = ACTIONS(389), + [anon_sym_f32] = ACTIONS(389), + [anon_sym_f64] = ACTIONS(389), + [anon_sym_bool] = ACTIONS(389), + [anon_sym_str] = ACTIONS(389), + [anon_sym_char] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_async] = ACTIONS(389), + [anon_sym_break] = ACTIONS(389), + [anon_sym_const] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(389), + [anon_sym_default] = ACTIONS(389), + [anon_sym_enum] = ACTIONS(389), + [anon_sym_fn] = ACTIONS(389), + [anon_sym_for] = ACTIONS(389), + [anon_sym_if] = ACTIONS(389), + [anon_sym_impl] = ACTIONS(389), + [anon_sym_let] = ACTIONS(389), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_match] = ACTIONS(389), + [anon_sym_mod] = ACTIONS(389), + [anon_sym_pub] = ACTIONS(389), + [anon_sym_return] = ACTIONS(389), + [anon_sym_static] = ACTIONS(389), + [anon_sym_struct] = ACTIONS(389), + [anon_sym_trait] = ACTIONS(389), + [anon_sym_type] = ACTIONS(389), + [anon_sym_union] = ACTIONS(389), + [anon_sym_unsafe] = ACTIONS(389), + [anon_sym_use] = ACTIONS(389), + [anon_sym_while] = ACTIONS(389), + [anon_sym_POUND] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_move] = ACTIONS(389), + [sym_integer_literal] = ACTIONS(387), + [aux_sym_string_literal_token1] = ACTIONS(387), + [sym_char_literal] = ACTIONS(387), + [anon_sym_true] = ACTIONS(389), + [anon_sym_false] = ACTIONS(389), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(389), + [sym_super] = ACTIONS(389), + [sym_crate] = ACTIONS(389), + [sym_metavariable] = ACTIONS(387), + [sym_raw_string_literal] = ACTIONS(387), + [sym_float_literal] = ACTIONS(387), + [sym_block_comment] = ACTIONS(3), + }, + [255] = { + [ts_builtin_sym_end] = ACTIONS(391), + [sym_identifier] = ACTIONS(393), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_macro_rules_BANG] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(393), + [anon_sym_i8] = ACTIONS(393), + [anon_sym_u16] = ACTIONS(393), + [anon_sym_i16] = ACTIONS(393), + [anon_sym_u32] = ACTIONS(393), + [anon_sym_i32] = ACTIONS(393), + [anon_sym_u64] = ACTIONS(393), + [anon_sym_i64] = ACTIONS(393), + [anon_sym_u128] = ACTIONS(393), + [anon_sym_i128] = ACTIONS(393), + [anon_sym_isize] = ACTIONS(393), + [anon_sym_usize] = ACTIONS(393), + [anon_sym_f32] = ACTIONS(393), + [anon_sym_f64] = ACTIONS(393), + [anon_sym_bool] = ACTIONS(393), + [anon_sym_str] = ACTIONS(393), + [anon_sym_char] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_async] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_const] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_default] = ACTIONS(393), + [anon_sym_enum] = ACTIONS(393), + [anon_sym_fn] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_impl] = ACTIONS(393), + [anon_sym_let] = ACTIONS(393), + [anon_sym_loop] = ACTIONS(393), + [anon_sym_match] = ACTIONS(393), + [anon_sym_mod] = ACTIONS(393), + [anon_sym_pub] = ACTIONS(393), + [anon_sym_return] = ACTIONS(393), + [anon_sym_static] = ACTIONS(393), + [anon_sym_struct] = ACTIONS(393), + [anon_sym_trait] = ACTIONS(393), + [anon_sym_type] = ACTIONS(393), + [anon_sym_union] = ACTIONS(393), + [anon_sym_unsafe] = ACTIONS(393), + [anon_sym_use] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_POUND] = ACTIONS(391), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_extern] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_move] = ACTIONS(393), + [sym_integer_literal] = ACTIONS(391), + [aux_sym_string_literal_token1] = ACTIONS(391), + [sym_char_literal] = ACTIONS(391), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(393), + [sym_super] = ACTIONS(393), + [sym_crate] = ACTIONS(393), + [sym_metavariable] = ACTIONS(391), + [sym_raw_string_literal] = ACTIONS(391), + [sym_float_literal] = ACTIONS(391), + [sym_block_comment] = ACTIONS(3), + }, + [256] = { + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_identifier] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(1093), + [anon_sym_macro_rules_BANG] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1093), + [anon_sym_LBRACE] = ACTIONS(1093), + [anon_sym_RBRACE] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(1093), + [anon_sym_u8] = ACTIONS(1095), + [anon_sym_i8] = ACTIONS(1095), + [anon_sym_u16] = ACTIONS(1095), + [anon_sym_i16] = ACTIONS(1095), + [anon_sym_u32] = ACTIONS(1095), + [anon_sym_i32] = ACTIONS(1095), + [anon_sym_u64] = ACTIONS(1095), + [anon_sym_i64] = ACTIONS(1095), + [anon_sym_u128] = ACTIONS(1095), + [anon_sym_i128] = ACTIONS(1095), + [anon_sym_isize] = ACTIONS(1095), + [anon_sym_usize] = ACTIONS(1095), + [anon_sym_f32] = ACTIONS(1095), + [anon_sym_f64] = ACTIONS(1095), + [anon_sym_bool] = ACTIONS(1095), + [anon_sym_str] = ACTIONS(1095), + [anon_sym_char] = ACTIONS(1095), + [anon_sym_SQUOTE] = ACTIONS(1095), + [anon_sym_async] = ACTIONS(1095), + [anon_sym_break] = ACTIONS(1095), + [anon_sym_const] = ACTIONS(1095), + [anon_sym_continue] = ACTIONS(1095), + [anon_sym_default] = ACTIONS(1095), + [anon_sym_enum] = ACTIONS(1095), + [anon_sym_fn] = ACTIONS(1095), + [anon_sym_for] = ACTIONS(1095), + [anon_sym_if] = ACTIONS(1095), + [anon_sym_impl] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_loop] = ACTIONS(1095), + [anon_sym_match] = ACTIONS(1095), + [anon_sym_mod] = ACTIONS(1095), + [anon_sym_pub] = ACTIONS(1095), + [anon_sym_return] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_struct] = ACTIONS(1095), + [anon_sym_trait] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_union] = ACTIONS(1095), + [anon_sym_unsafe] = ACTIONS(1095), + [anon_sym_use] = ACTIONS(1095), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_POUND] = ACTIONS(1093), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_extern] = ACTIONS(1095), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_AMP] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_PIPE] = ACTIONS(1093), + [anon_sym_move] = ACTIONS(1095), + [sym_integer_literal] = ACTIONS(1093), + [aux_sym_string_literal_token1] = ACTIONS(1093), + [sym_char_literal] = ACTIONS(1093), + [anon_sym_true] = ACTIONS(1095), + [anon_sym_false] = ACTIONS(1095), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1095), + [sym_super] = ACTIONS(1095), + [sym_crate] = ACTIONS(1095), + [sym_metavariable] = ACTIONS(1093), + [sym_raw_string_literal] = ACTIONS(1093), + [sym_float_literal] = ACTIONS(1093), + [sym_block_comment] = ACTIONS(3), + }, + [257] = { + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_identifier] = ACTIONS(1099), + [anon_sym_SEMI] = ACTIONS(1097), + [anon_sym_macro_rules_BANG] = ACTIONS(1097), + [anon_sym_LPAREN] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_RBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(1097), + [anon_sym_u8] = ACTIONS(1099), + [anon_sym_i8] = ACTIONS(1099), + [anon_sym_u16] = ACTIONS(1099), + [anon_sym_i16] = ACTIONS(1099), + [anon_sym_u32] = ACTIONS(1099), + [anon_sym_i32] = ACTIONS(1099), + [anon_sym_u64] = ACTIONS(1099), + [anon_sym_i64] = ACTIONS(1099), + [anon_sym_u128] = ACTIONS(1099), + [anon_sym_i128] = ACTIONS(1099), + [anon_sym_isize] = ACTIONS(1099), + [anon_sym_usize] = ACTIONS(1099), + [anon_sym_f32] = ACTIONS(1099), + [anon_sym_f64] = ACTIONS(1099), + [anon_sym_bool] = ACTIONS(1099), + [anon_sym_str] = ACTIONS(1099), + [anon_sym_char] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1099), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_break] = ACTIONS(1099), + [anon_sym_const] = ACTIONS(1099), + [anon_sym_continue] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1099), + [anon_sym_enum] = ACTIONS(1099), + [anon_sym_fn] = ACTIONS(1099), + [anon_sym_for] = ACTIONS(1099), + [anon_sym_if] = ACTIONS(1099), + [anon_sym_impl] = ACTIONS(1099), + [anon_sym_let] = ACTIONS(1099), + [anon_sym_loop] = ACTIONS(1099), + [anon_sym_match] = ACTIONS(1099), + [anon_sym_mod] = ACTIONS(1099), + [anon_sym_pub] = ACTIONS(1099), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_static] = ACTIONS(1099), + [anon_sym_struct] = ACTIONS(1099), + [anon_sym_trait] = ACTIONS(1099), + [anon_sym_type] = ACTIONS(1099), + [anon_sym_union] = ACTIONS(1099), + [anon_sym_unsafe] = ACTIONS(1099), + [anon_sym_use] = ACTIONS(1099), + [anon_sym_while] = ACTIONS(1099), + [anon_sym_POUND] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(1097), + [anon_sym_extern] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(1097), + [anon_sym_COLON_COLON] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1097), [anon_sym_DOT_DOT] = ACTIONS(1097), [anon_sym_DASH] = ACTIONS(1097), [anon_sym_PIPE] = ACTIONS(1097), @@ -34121,7 +34352,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1097), [sym_block_comment] = ACTIONS(3), }, - [255] = { + [258] = { [ts_builtin_sym_end] = ACTIONS(1101), [sym_identifier] = ACTIONS(1103), [anon_sym_SEMI] = ACTIONS(1101), @@ -34197,7 +34428,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1101), [sym_block_comment] = ACTIONS(3), }, - [256] = { + [259] = { [ts_builtin_sym_end] = ACTIONS(1105), [sym_identifier] = ACTIONS(1107), [anon_sym_SEMI] = ACTIONS(1105), @@ -34273,7 +34504,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1105), [sym_block_comment] = ACTIONS(3), }, - [257] = { + [260] = { [ts_builtin_sym_end] = ACTIONS(1109), [sym_identifier] = ACTIONS(1111), [anon_sym_SEMI] = ACTIONS(1109), @@ -34349,7 +34580,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1109), [sym_block_comment] = ACTIONS(3), }, - [258] = { + [261] = { [ts_builtin_sym_end] = ACTIONS(1113), [sym_identifier] = ACTIONS(1115), [anon_sym_SEMI] = ACTIONS(1113), @@ -34425,7 +34656,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1113), [sym_block_comment] = ACTIONS(3), }, - [259] = { + [262] = { [ts_builtin_sym_end] = ACTIONS(1117), [sym_identifier] = ACTIONS(1119), [anon_sym_SEMI] = ACTIONS(1117), @@ -34501,7 +34732,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1117), [sym_block_comment] = ACTIONS(3), }, - [260] = { + [263] = { [ts_builtin_sym_end] = ACTIONS(1121), [sym_identifier] = ACTIONS(1123), [anon_sym_SEMI] = ACTIONS(1121), @@ -34577,7 +34808,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1121), [sym_block_comment] = ACTIONS(3), }, - [261] = { + [264] = { [ts_builtin_sym_end] = ACTIONS(1125), [sym_identifier] = ACTIONS(1127), [anon_sym_SEMI] = ACTIONS(1125), @@ -34653,7 +34884,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1125), [sym_block_comment] = ACTIONS(3), }, - [262] = { + [265] = { [ts_builtin_sym_end] = ACTIONS(1129), [sym_identifier] = ACTIONS(1131), [anon_sym_SEMI] = ACTIONS(1129), @@ -34729,7 +34960,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1129), [sym_block_comment] = ACTIONS(3), }, - [263] = { + [266] = { [ts_builtin_sym_end] = ACTIONS(1133), [sym_identifier] = ACTIONS(1135), [anon_sym_SEMI] = ACTIONS(1133), @@ -34805,7 +35036,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1133), [sym_block_comment] = ACTIONS(3), }, - [264] = { + [267] = { [ts_builtin_sym_end] = ACTIONS(1137), [sym_identifier] = ACTIONS(1139), [anon_sym_SEMI] = ACTIONS(1137), @@ -34881,7 +35112,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1137), [sym_block_comment] = ACTIONS(3), }, - [265] = { + [268] = { [ts_builtin_sym_end] = ACTIONS(1141), [sym_identifier] = ACTIONS(1143), [anon_sym_SEMI] = ACTIONS(1141), @@ -34957,7 +35188,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1141), [sym_block_comment] = ACTIONS(3), }, - [266] = { + [269] = { [ts_builtin_sym_end] = ACTIONS(1145), [sym_identifier] = ACTIONS(1147), [anon_sym_SEMI] = ACTIONS(1145), @@ -35033,7 +35264,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1145), [sym_block_comment] = ACTIONS(3), }, - [267] = { + [270] = { [ts_builtin_sym_end] = ACTIONS(1149), [sym_identifier] = ACTIONS(1151), [anon_sym_SEMI] = ACTIONS(1149), @@ -35109,7 +35340,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1149), [sym_block_comment] = ACTIONS(3), }, - [268] = { + [271] = { [ts_builtin_sym_end] = ACTIONS(1153), [sym_identifier] = ACTIONS(1155), [anon_sym_SEMI] = ACTIONS(1153), @@ -35185,7 +35416,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1153), [sym_block_comment] = ACTIONS(3), }, - [269] = { + [272] = { [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1159), [anon_sym_SEMI] = ACTIONS(1157), @@ -35261,7 +35492,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1157), [sym_block_comment] = ACTIONS(3), }, - [270] = { + [273] = { [ts_builtin_sym_end] = ACTIONS(1161), [sym_identifier] = ACTIONS(1163), [anon_sym_SEMI] = ACTIONS(1161), @@ -35337,11784 +35568,11556 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1161), [sym_block_comment] = ACTIONS(3), }, - [271] = { - [ts_builtin_sym_end] = ACTIONS(1165), - [sym_identifier] = ACTIONS(1167), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_macro_rules_BANG] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1165), - [anon_sym_LBRACE] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1165), - [anon_sym_STAR] = ACTIONS(1165), - [anon_sym_u8] = ACTIONS(1167), - [anon_sym_i8] = ACTIONS(1167), - [anon_sym_u16] = ACTIONS(1167), - [anon_sym_i16] = ACTIONS(1167), - [anon_sym_u32] = ACTIONS(1167), - [anon_sym_i32] = ACTIONS(1167), - [anon_sym_u64] = ACTIONS(1167), - [anon_sym_i64] = ACTIONS(1167), - [anon_sym_u128] = ACTIONS(1167), - [anon_sym_i128] = ACTIONS(1167), - [anon_sym_isize] = ACTIONS(1167), - [anon_sym_usize] = ACTIONS(1167), - [anon_sym_f32] = ACTIONS(1167), - [anon_sym_f64] = ACTIONS(1167), - [anon_sym_bool] = ACTIONS(1167), - [anon_sym_str] = ACTIONS(1167), - [anon_sym_char] = ACTIONS(1167), - [anon_sym_SQUOTE] = ACTIONS(1167), - [anon_sym_async] = ACTIONS(1167), - [anon_sym_break] = ACTIONS(1167), - [anon_sym_const] = ACTIONS(1167), - [anon_sym_continue] = ACTIONS(1167), - [anon_sym_default] = ACTIONS(1167), - [anon_sym_enum] = ACTIONS(1167), - [anon_sym_fn] = ACTIONS(1167), - [anon_sym_for] = ACTIONS(1167), - [anon_sym_if] = ACTIONS(1167), - [anon_sym_impl] = ACTIONS(1167), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_loop] = ACTIONS(1167), - [anon_sym_match] = ACTIONS(1167), - [anon_sym_mod] = ACTIONS(1167), - [anon_sym_pub] = ACTIONS(1167), - [anon_sym_return] = ACTIONS(1167), - [anon_sym_static] = ACTIONS(1167), - [anon_sym_struct] = ACTIONS(1167), - [anon_sym_trait] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_union] = ACTIONS(1167), - [anon_sym_unsafe] = ACTIONS(1167), - [anon_sym_use] = ACTIONS(1167), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_POUND] = ACTIONS(1165), - [anon_sym_BANG] = ACTIONS(1165), - [anon_sym_extern] = ACTIONS(1167), - [anon_sym_LT] = ACTIONS(1165), - [anon_sym_COLON_COLON] = ACTIONS(1165), - [anon_sym_AMP] = ACTIONS(1165), - [anon_sym_DOT_DOT] = ACTIONS(1165), - [anon_sym_DASH] = ACTIONS(1165), - [anon_sym_PIPE] = ACTIONS(1165), - [anon_sym_move] = ACTIONS(1167), - [sym_integer_literal] = ACTIONS(1165), - [aux_sym_string_literal_token1] = ACTIONS(1165), - [sym_char_literal] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_false] = ACTIONS(1167), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1167), - [sym_super] = ACTIONS(1167), - [sym_crate] = ACTIONS(1167), - [sym_metavariable] = ACTIONS(1165), - [sym_raw_string_literal] = ACTIONS(1165), - [sym_float_literal] = ACTIONS(1165), - [sym_block_comment] = ACTIONS(3), - }, - [272] = { - [ts_builtin_sym_end] = ACTIONS(1169), - [sym_identifier] = ACTIONS(1171), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_macro_rules_BANG] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1169), - [anon_sym_LBRACE] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1169), - [anon_sym_STAR] = ACTIONS(1169), - [anon_sym_u8] = ACTIONS(1171), - [anon_sym_i8] = ACTIONS(1171), - [anon_sym_u16] = ACTIONS(1171), - [anon_sym_i16] = ACTIONS(1171), - [anon_sym_u32] = ACTIONS(1171), - [anon_sym_i32] = ACTIONS(1171), - [anon_sym_u64] = ACTIONS(1171), - [anon_sym_i64] = ACTIONS(1171), - [anon_sym_u128] = ACTIONS(1171), - [anon_sym_i128] = ACTIONS(1171), - [anon_sym_isize] = ACTIONS(1171), - [anon_sym_usize] = ACTIONS(1171), - [anon_sym_f32] = ACTIONS(1171), - [anon_sym_f64] = ACTIONS(1171), - [anon_sym_bool] = ACTIONS(1171), - [anon_sym_str] = ACTIONS(1171), - [anon_sym_char] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1171), - [anon_sym_async] = ACTIONS(1171), - [anon_sym_break] = ACTIONS(1171), - [anon_sym_const] = ACTIONS(1171), - [anon_sym_continue] = ACTIONS(1171), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_enum] = ACTIONS(1171), - [anon_sym_fn] = ACTIONS(1171), - [anon_sym_for] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1171), - [anon_sym_impl] = ACTIONS(1171), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_loop] = ACTIONS(1171), - [anon_sym_match] = ACTIONS(1171), - [anon_sym_mod] = ACTIONS(1171), - [anon_sym_pub] = ACTIONS(1171), - [anon_sym_return] = ACTIONS(1171), - [anon_sym_static] = ACTIONS(1171), - [anon_sym_struct] = ACTIONS(1171), - [anon_sym_trait] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_union] = ACTIONS(1171), - [anon_sym_unsafe] = ACTIONS(1171), - [anon_sym_use] = ACTIONS(1171), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_POUND] = ACTIONS(1169), - [anon_sym_BANG] = ACTIONS(1169), - [anon_sym_extern] = ACTIONS(1171), - [anon_sym_LT] = ACTIONS(1169), - [anon_sym_COLON_COLON] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), - [anon_sym_DOT_DOT] = ACTIONS(1169), - [anon_sym_DASH] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1169), - [anon_sym_move] = ACTIONS(1171), - [sym_integer_literal] = ACTIONS(1169), - [aux_sym_string_literal_token1] = ACTIONS(1169), - [sym_char_literal] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(1171), - [anon_sym_false] = ACTIONS(1171), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1171), - [sym_super] = ACTIONS(1171), - [sym_crate] = ACTIONS(1171), - [sym_metavariable] = ACTIONS(1169), - [sym_raw_string_literal] = ACTIONS(1169), - [sym_float_literal] = ACTIONS(1169), - [sym_block_comment] = ACTIONS(3), - }, - [273] = { - [ts_builtin_sym_end] = ACTIONS(1173), - [sym_identifier] = ACTIONS(1175), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_macro_rules_BANG] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1173), - [anon_sym_STAR] = ACTIONS(1173), - [anon_sym_u8] = ACTIONS(1175), - [anon_sym_i8] = ACTIONS(1175), - [anon_sym_u16] = ACTIONS(1175), - [anon_sym_i16] = ACTIONS(1175), - [anon_sym_u32] = ACTIONS(1175), - [anon_sym_i32] = ACTIONS(1175), - [anon_sym_u64] = ACTIONS(1175), - [anon_sym_i64] = ACTIONS(1175), - [anon_sym_u128] = ACTIONS(1175), - [anon_sym_i128] = ACTIONS(1175), - [anon_sym_isize] = ACTIONS(1175), - [anon_sym_usize] = ACTIONS(1175), - [anon_sym_f32] = ACTIONS(1175), - [anon_sym_f64] = ACTIONS(1175), - [anon_sym_bool] = ACTIONS(1175), - [anon_sym_str] = ACTIONS(1175), - [anon_sym_char] = ACTIONS(1175), - [anon_sym_SQUOTE] = ACTIONS(1175), - [anon_sym_async] = ACTIONS(1175), - [anon_sym_break] = ACTIONS(1175), - [anon_sym_const] = ACTIONS(1175), - [anon_sym_continue] = ACTIONS(1175), - [anon_sym_default] = ACTIONS(1175), - [anon_sym_enum] = ACTIONS(1175), - [anon_sym_fn] = ACTIONS(1175), - [anon_sym_for] = ACTIONS(1175), - [anon_sym_if] = ACTIONS(1175), - [anon_sym_impl] = ACTIONS(1175), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_loop] = ACTIONS(1175), - [anon_sym_match] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_pub] = ACTIONS(1175), - [anon_sym_return] = ACTIONS(1175), - [anon_sym_static] = ACTIONS(1175), - [anon_sym_struct] = ACTIONS(1175), - [anon_sym_trait] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_union] = ACTIONS(1175), - [anon_sym_unsafe] = ACTIONS(1175), - [anon_sym_use] = ACTIONS(1175), - [anon_sym_while] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1173), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_extern] = ACTIONS(1175), - [anon_sym_LT] = ACTIONS(1173), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_AMP] = ACTIONS(1173), - [anon_sym_DOT_DOT] = ACTIONS(1173), - [anon_sym_DASH] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1173), - [anon_sym_move] = ACTIONS(1175), - [sym_integer_literal] = ACTIONS(1173), - [aux_sym_string_literal_token1] = ACTIONS(1173), - [sym_char_literal] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(1175), - [anon_sym_false] = ACTIONS(1175), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1175), - [sym_super] = ACTIONS(1175), - [sym_crate] = ACTIONS(1175), - [sym_metavariable] = ACTIONS(1173), - [sym_raw_string_literal] = ACTIONS(1173), - [sym_float_literal] = ACTIONS(1173), - [sym_block_comment] = ACTIONS(3), - }, [274] = { - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(1179), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_macro_rules_BANG] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1177), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1177), - [anon_sym_STAR] = ACTIONS(1177), - [anon_sym_u8] = ACTIONS(1179), - [anon_sym_i8] = ACTIONS(1179), - [anon_sym_u16] = ACTIONS(1179), - [anon_sym_i16] = ACTIONS(1179), - [anon_sym_u32] = ACTIONS(1179), - [anon_sym_i32] = ACTIONS(1179), - [anon_sym_u64] = ACTIONS(1179), - [anon_sym_i64] = ACTIONS(1179), - [anon_sym_u128] = ACTIONS(1179), - [anon_sym_i128] = ACTIONS(1179), - [anon_sym_isize] = ACTIONS(1179), - [anon_sym_usize] = ACTIONS(1179), - [anon_sym_f32] = ACTIONS(1179), - [anon_sym_f64] = ACTIONS(1179), - [anon_sym_bool] = ACTIONS(1179), - [anon_sym_str] = ACTIONS(1179), - [anon_sym_char] = ACTIONS(1179), - [anon_sym_SQUOTE] = ACTIONS(1179), - [anon_sym_async] = ACTIONS(1179), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_const] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1179), - [anon_sym_default] = ACTIONS(1179), - [anon_sym_enum] = ACTIONS(1179), - [anon_sym_fn] = ACTIONS(1179), - [anon_sym_for] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_impl] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1179), - [anon_sym_loop] = ACTIONS(1179), - [anon_sym_match] = ACTIONS(1179), - [anon_sym_mod] = ACTIONS(1179), - [anon_sym_pub] = ACTIONS(1179), - [anon_sym_return] = ACTIONS(1179), - [anon_sym_static] = ACTIONS(1179), - [anon_sym_struct] = ACTIONS(1179), - [anon_sym_trait] = ACTIONS(1179), - [anon_sym_type] = ACTIONS(1179), - [anon_sym_union] = ACTIONS(1179), - [anon_sym_unsafe] = ACTIONS(1179), - [anon_sym_use] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_POUND] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1177), - [anon_sym_extern] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1177), - [anon_sym_COLON_COLON] = ACTIONS(1177), - [anon_sym_AMP] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH] = ACTIONS(1177), - [anon_sym_PIPE] = ACTIONS(1177), - [anon_sym_move] = ACTIONS(1179), - [sym_integer_literal] = ACTIONS(1177), - [aux_sym_string_literal_token1] = ACTIONS(1177), - [sym_char_literal] = ACTIONS(1177), - [anon_sym_true] = ACTIONS(1179), - [anon_sym_false] = ACTIONS(1179), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1179), - [sym_super] = ACTIONS(1179), - [sym_crate] = ACTIONS(1179), - [sym_metavariable] = ACTIONS(1177), - [sym_raw_string_literal] = ACTIONS(1177), - [sym_float_literal] = ACTIONS(1177), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_RPAREN] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(1173), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_RBRACK] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1179), + [anon_sym_u8] = ACTIONS(1165), + [anon_sym_i8] = ACTIONS(1165), + [anon_sym_u16] = ACTIONS(1165), + [anon_sym_i16] = ACTIONS(1165), + [anon_sym_u32] = ACTIONS(1165), + [anon_sym_i32] = ACTIONS(1165), + [anon_sym_u64] = ACTIONS(1165), + [anon_sym_i64] = ACTIONS(1165), + [anon_sym_u128] = ACTIONS(1165), + [anon_sym_i128] = ACTIONS(1165), + [anon_sym_isize] = ACTIONS(1165), + [anon_sym_usize] = ACTIONS(1165), + [anon_sym_f32] = ACTIONS(1165), + [anon_sym_f64] = ACTIONS(1165), + [anon_sym_bool] = ACTIONS(1165), + [anon_sym_str] = ACTIONS(1165), + [anon_sym_char] = ACTIONS(1165), + [aux_sym__non_special_token_token1] = ACTIONS(1165), + [anon_sym_SQUOTE] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(1165), + [anon_sym_async] = ACTIONS(1165), + [anon_sym_await] = ACTIONS(1165), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_const] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1165), + [anon_sym_enum] = ACTIONS(1165), + [anon_sym_fn] = ACTIONS(1165), + [anon_sym_for] = ACTIONS(1165), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_impl] = ACTIONS(1165), + [anon_sym_let] = ACTIONS(1165), + [anon_sym_loop] = ACTIONS(1165), + [anon_sym_match] = ACTIONS(1165), + [anon_sym_mod] = ACTIONS(1165), + [anon_sym_pub] = ACTIONS(1165), + [anon_sym_return] = ACTIONS(1165), + [anon_sym_static] = ACTIONS(1165), + [anon_sym_struct] = ACTIONS(1165), + [anon_sym_trait] = ACTIONS(1165), + [anon_sym_type] = ACTIONS(1165), + [anon_sym_union] = ACTIONS(1165), + [anon_sym_unsafe] = ACTIONS(1165), + [anon_sym_use] = ACTIONS(1165), + [anon_sym_where] = ACTIONS(1165), + [anon_sym_while] = ACTIONS(1165), + [sym_mutable_specifier] = ACTIONS(1165), + [sym_integer_literal] = ACTIONS(1182), + [aux_sym_string_literal_token1] = ACTIONS(1185), + [sym_char_literal] = ACTIONS(1182), + [anon_sym_true] = ACTIONS(1188), + [anon_sym_false] = ACTIONS(1188), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1165), + [sym_crate] = ACTIONS(1165), + [sym_metavariable] = ACTIONS(1191), + [sym_raw_string_literal] = ACTIONS(1182), + [sym_float_literal] = ACTIONS(1182), [sym_block_comment] = ACTIONS(3), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(1181), - [sym_identifier] = ACTIONS(1183), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_macro_rules_BANG] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(1181), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1181), - [anon_sym_STAR] = ACTIONS(1181), - [anon_sym_u8] = ACTIONS(1183), - [anon_sym_i8] = ACTIONS(1183), - [anon_sym_u16] = ACTIONS(1183), - [anon_sym_i16] = ACTIONS(1183), - [anon_sym_u32] = ACTIONS(1183), - [anon_sym_i32] = ACTIONS(1183), - [anon_sym_u64] = ACTIONS(1183), - [anon_sym_i64] = ACTIONS(1183), - [anon_sym_u128] = ACTIONS(1183), - [anon_sym_i128] = ACTIONS(1183), - [anon_sym_isize] = ACTIONS(1183), - [anon_sym_usize] = ACTIONS(1183), - [anon_sym_f32] = ACTIONS(1183), - [anon_sym_f64] = ACTIONS(1183), - [anon_sym_bool] = ACTIONS(1183), - [anon_sym_str] = ACTIONS(1183), - [anon_sym_char] = ACTIONS(1183), - [anon_sym_SQUOTE] = ACTIONS(1183), - [anon_sym_async] = ACTIONS(1183), - [anon_sym_break] = ACTIONS(1183), - [anon_sym_const] = ACTIONS(1183), - [anon_sym_continue] = ACTIONS(1183), - [anon_sym_default] = ACTIONS(1183), - [anon_sym_enum] = ACTIONS(1183), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_for] = ACTIONS(1183), - [anon_sym_if] = ACTIONS(1183), - [anon_sym_impl] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_loop] = ACTIONS(1183), - [anon_sym_match] = ACTIONS(1183), - [anon_sym_mod] = ACTIONS(1183), - [anon_sym_pub] = ACTIONS(1183), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_struct] = ACTIONS(1183), - [anon_sym_trait] = ACTIONS(1183), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_union] = ACTIONS(1183), - [anon_sym_unsafe] = ACTIONS(1183), - [anon_sym_use] = ACTIONS(1183), - [anon_sym_while] = ACTIONS(1183), - [anon_sym_POUND] = ACTIONS(1181), - [anon_sym_BANG] = ACTIONS(1181), - [anon_sym_extern] = ACTIONS(1183), - [anon_sym_LT] = ACTIONS(1181), - [anon_sym_COLON_COLON] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_DOT_DOT] = ACTIONS(1181), - [anon_sym_DASH] = ACTIONS(1181), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_move] = ACTIONS(1183), - [sym_integer_literal] = ACTIONS(1181), - [aux_sym_string_literal_token1] = ACTIONS(1181), - [sym_char_literal] = ACTIONS(1181), - [anon_sym_true] = ACTIONS(1183), - [anon_sym_false] = ACTIONS(1183), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1194), + [anon_sym_DOT_DOT] = ACTIONS(1194), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_PIPE] = ACTIONS(1194), + [anon_sym_move] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1183), - [sym_super] = ACTIONS(1183), - [sym_crate] = ACTIONS(1183), - [sym_metavariable] = ACTIONS(1181), - [sym_raw_string_literal] = ACTIONS(1181), - [sym_float_literal] = ACTIONS(1181), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym_raw_string_literal] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), [sym_block_comment] = ACTIONS(3), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(1187), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_macro_rules_BANG] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(1185), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1185), - [anon_sym_u8] = ACTIONS(1187), - [anon_sym_i8] = ACTIONS(1187), - [anon_sym_u16] = ACTIONS(1187), - [anon_sym_i16] = ACTIONS(1187), - [anon_sym_u32] = ACTIONS(1187), - [anon_sym_i32] = ACTIONS(1187), - [anon_sym_u64] = ACTIONS(1187), - [anon_sym_i64] = ACTIONS(1187), - [anon_sym_u128] = ACTIONS(1187), - [anon_sym_i128] = ACTIONS(1187), - [anon_sym_isize] = ACTIONS(1187), - [anon_sym_usize] = ACTIONS(1187), - [anon_sym_f32] = ACTIONS(1187), - [anon_sym_f64] = ACTIONS(1187), - [anon_sym_bool] = ACTIONS(1187), - [anon_sym_str] = ACTIONS(1187), - [anon_sym_char] = ACTIONS(1187), - [anon_sym_SQUOTE] = ACTIONS(1187), - [anon_sym_async] = ACTIONS(1187), - [anon_sym_break] = ACTIONS(1187), - [anon_sym_const] = ACTIONS(1187), - [anon_sym_continue] = ACTIONS(1187), - [anon_sym_default] = ACTIONS(1187), - [anon_sym_enum] = ACTIONS(1187), - [anon_sym_fn] = ACTIONS(1187), - [anon_sym_for] = ACTIONS(1187), - [anon_sym_if] = ACTIONS(1187), - [anon_sym_impl] = ACTIONS(1187), - [anon_sym_let] = ACTIONS(1187), - [anon_sym_loop] = ACTIONS(1187), - [anon_sym_match] = ACTIONS(1187), - [anon_sym_mod] = ACTIONS(1187), - [anon_sym_pub] = ACTIONS(1187), - [anon_sym_return] = ACTIONS(1187), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1187), - [anon_sym_trait] = ACTIONS(1187), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_union] = ACTIONS(1187), - [anon_sym_unsafe] = ACTIONS(1187), - [anon_sym_use] = ACTIONS(1187), - [anon_sym_while] = ACTIONS(1187), - [anon_sym_POUND] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1185), - [anon_sym_extern] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1185), - [anon_sym_COLON_COLON] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_move] = ACTIONS(1187), - [sym_integer_literal] = ACTIONS(1185), - [aux_sym_string_literal_token1] = ACTIONS(1185), - [sym_char_literal] = ACTIONS(1185), - [anon_sym_true] = ACTIONS(1187), - [anon_sym_false] = ACTIONS(1187), + [ts_builtin_sym_end] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1200), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_macro_rules_BANG] = ACTIONS(1198), + [anon_sym_LPAREN] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1198), + [anon_sym_RBRACE] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_u8] = ACTIONS(1200), + [anon_sym_i8] = ACTIONS(1200), + [anon_sym_u16] = ACTIONS(1200), + [anon_sym_i16] = ACTIONS(1200), + [anon_sym_u32] = ACTIONS(1200), + [anon_sym_i32] = ACTIONS(1200), + [anon_sym_u64] = ACTIONS(1200), + [anon_sym_i64] = ACTIONS(1200), + [anon_sym_u128] = ACTIONS(1200), + [anon_sym_i128] = ACTIONS(1200), + [anon_sym_isize] = ACTIONS(1200), + [anon_sym_usize] = ACTIONS(1200), + [anon_sym_f32] = ACTIONS(1200), + [anon_sym_f64] = ACTIONS(1200), + [anon_sym_bool] = ACTIONS(1200), + [anon_sym_str] = ACTIONS(1200), + [anon_sym_char] = ACTIONS(1200), + [anon_sym_SQUOTE] = ACTIONS(1200), + [anon_sym_async] = ACTIONS(1200), + [anon_sym_break] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1200), + [anon_sym_continue] = ACTIONS(1200), + [anon_sym_default] = ACTIONS(1200), + [anon_sym_enum] = ACTIONS(1200), + [anon_sym_fn] = ACTIONS(1200), + [anon_sym_for] = ACTIONS(1200), + [anon_sym_if] = ACTIONS(1200), + [anon_sym_impl] = ACTIONS(1200), + [anon_sym_let] = ACTIONS(1200), + [anon_sym_loop] = ACTIONS(1200), + [anon_sym_match] = ACTIONS(1200), + [anon_sym_mod] = ACTIONS(1200), + [anon_sym_pub] = ACTIONS(1200), + [anon_sym_return] = ACTIONS(1200), + [anon_sym_static] = ACTIONS(1200), + [anon_sym_struct] = ACTIONS(1200), + [anon_sym_trait] = ACTIONS(1200), + [anon_sym_type] = ACTIONS(1200), + [anon_sym_union] = ACTIONS(1200), + [anon_sym_unsafe] = ACTIONS(1200), + [anon_sym_use] = ACTIONS(1200), + [anon_sym_while] = ACTIONS(1200), + [anon_sym_POUND] = ACTIONS(1198), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_extern] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_COLON_COLON] = ACTIONS(1198), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_DOT_DOT] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_move] = ACTIONS(1200), + [sym_integer_literal] = ACTIONS(1198), + [aux_sym_string_literal_token1] = ACTIONS(1198), + [sym_char_literal] = ACTIONS(1198), + [anon_sym_true] = ACTIONS(1200), + [anon_sym_false] = ACTIONS(1200), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1187), - [sym_super] = ACTIONS(1187), - [sym_crate] = ACTIONS(1187), - [sym_metavariable] = ACTIONS(1185), - [sym_raw_string_literal] = ACTIONS(1185), - [sym_float_literal] = ACTIONS(1185), + [sym_self] = ACTIONS(1200), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1198), + [sym_raw_string_literal] = ACTIONS(1198), + [sym_float_literal] = ACTIONS(1198), [sym_block_comment] = ACTIONS(3), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(1191), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_macro_rules_BANG] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(1189), - [anon_sym_LBRACE] = ACTIONS(1189), - [anon_sym_RBRACE] = ACTIONS(1189), - [anon_sym_LBRACK] = ACTIONS(1189), - [anon_sym_STAR] = ACTIONS(1189), - [anon_sym_u8] = ACTIONS(1191), - [anon_sym_i8] = ACTIONS(1191), - [anon_sym_u16] = ACTIONS(1191), - [anon_sym_i16] = ACTIONS(1191), - [anon_sym_u32] = ACTIONS(1191), - [anon_sym_i32] = ACTIONS(1191), - [anon_sym_u64] = ACTIONS(1191), - [anon_sym_i64] = ACTIONS(1191), - [anon_sym_u128] = ACTIONS(1191), - [anon_sym_i128] = ACTIONS(1191), - [anon_sym_isize] = ACTIONS(1191), - [anon_sym_usize] = ACTIONS(1191), - [anon_sym_f32] = ACTIONS(1191), - [anon_sym_f64] = ACTIONS(1191), - [anon_sym_bool] = ACTIONS(1191), - [anon_sym_str] = ACTIONS(1191), - [anon_sym_char] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1191), - [anon_sym_async] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1191), - [anon_sym_const] = ACTIONS(1191), - [anon_sym_continue] = ACTIONS(1191), - [anon_sym_default] = ACTIONS(1191), - [anon_sym_enum] = ACTIONS(1191), - [anon_sym_fn] = ACTIONS(1191), - [anon_sym_for] = ACTIONS(1191), - [anon_sym_if] = ACTIONS(1191), - [anon_sym_impl] = ACTIONS(1191), - [anon_sym_let] = ACTIONS(1191), - [anon_sym_loop] = ACTIONS(1191), - [anon_sym_match] = ACTIONS(1191), - [anon_sym_mod] = ACTIONS(1191), - [anon_sym_pub] = ACTIONS(1191), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_trait] = ACTIONS(1191), - [anon_sym_type] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1191), - [anon_sym_unsafe] = ACTIONS(1191), - [anon_sym_use] = ACTIONS(1191), - [anon_sym_while] = ACTIONS(1191), - [anon_sym_POUND] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_extern] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1189), - [anon_sym_move] = ACTIONS(1191), - [sym_integer_literal] = ACTIONS(1189), - [aux_sym_string_literal_token1] = ACTIONS(1189), - [sym_char_literal] = ACTIONS(1189), - [anon_sym_true] = ACTIONS(1191), - [anon_sym_false] = ACTIONS(1191), + [ts_builtin_sym_end] = ACTIONS(1202), + [sym_identifier] = ACTIONS(1204), + [anon_sym_SEMI] = ACTIONS(1202), + [anon_sym_macro_rules_BANG] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_LBRACE] = ACTIONS(1202), + [anon_sym_RBRACE] = ACTIONS(1202), + [anon_sym_LBRACK] = ACTIONS(1202), + [anon_sym_STAR] = ACTIONS(1202), + [anon_sym_u8] = ACTIONS(1204), + [anon_sym_i8] = ACTIONS(1204), + [anon_sym_u16] = ACTIONS(1204), + [anon_sym_i16] = ACTIONS(1204), + [anon_sym_u32] = ACTIONS(1204), + [anon_sym_i32] = ACTIONS(1204), + [anon_sym_u64] = ACTIONS(1204), + [anon_sym_i64] = ACTIONS(1204), + [anon_sym_u128] = ACTIONS(1204), + [anon_sym_i128] = ACTIONS(1204), + [anon_sym_isize] = ACTIONS(1204), + [anon_sym_usize] = ACTIONS(1204), + [anon_sym_f32] = ACTIONS(1204), + [anon_sym_f64] = ACTIONS(1204), + [anon_sym_bool] = ACTIONS(1204), + [anon_sym_str] = ACTIONS(1204), + [anon_sym_char] = ACTIONS(1204), + [anon_sym_SQUOTE] = ACTIONS(1204), + [anon_sym_async] = ACTIONS(1204), + [anon_sym_break] = ACTIONS(1204), + [anon_sym_const] = ACTIONS(1204), + [anon_sym_continue] = ACTIONS(1204), + [anon_sym_default] = ACTIONS(1204), + [anon_sym_enum] = ACTIONS(1204), + [anon_sym_fn] = ACTIONS(1204), + [anon_sym_for] = ACTIONS(1204), + [anon_sym_if] = ACTIONS(1204), + [anon_sym_impl] = ACTIONS(1204), + [anon_sym_let] = ACTIONS(1204), + [anon_sym_loop] = ACTIONS(1204), + [anon_sym_match] = ACTIONS(1204), + [anon_sym_mod] = ACTIONS(1204), + [anon_sym_pub] = ACTIONS(1204), + [anon_sym_return] = ACTIONS(1204), + [anon_sym_static] = ACTIONS(1204), + [anon_sym_struct] = ACTIONS(1204), + [anon_sym_trait] = ACTIONS(1204), + [anon_sym_type] = ACTIONS(1204), + [anon_sym_union] = ACTIONS(1204), + [anon_sym_unsafe] = ACTIONS(1204), + [anon_sym_use] = ACTIONS(1204), + [anon_sym_while] = ACTIONS(1204), + [anon_sym_POUND] = ACTIONS(1202), + [anon_sym_BANG] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(1204), + [anon_sym_LT] = ACTIONS(1202), + [anon_sym_COLON_COLON] = ACTIONS(1202), + [anon_sym_AMP] = ACTIONS(1202), + [anon_sym_DOT_DOT] = ACTIONS(1202), + [anon_sym_DASH] = ACTIONS(1202), + [anon_sym_PIPE] = ACTIONS(1202), + [anon_sym_move] = ACTIONS(1204), + [sym_integer_literal] = ACTIONS(1202), + [aux_sym_string_literal_token1] = ACTIONS(1202), + [sym_char_literal] = ACTIONS(1202), + [anon_sym_true] = ACTIONS(1204), + [anon_sym_false] = ACTIONS(1204), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1191), - [sym_super] = ACTIONS(1191), - [sym_crate] = ACTIONS(1191), - [sym_metavariable] = ACTIONS(1189), - [sym_raw_string_literal] = ACTIONS(1189), - [sym_float_literal] = ACTIONS(1189), + [sym_self] = ACTIONS(1204), + [sym_super] = ACTIONS(1204), + [sym_crate] = ACTIONS(1204), + [sym_metavariable] = ACTIONS(1202), + [sym_raw_string_literal] = ACTIONS(1202), + [sym_float_literal] = ACTIONS(1202), [sym_block_comment] = ACTIONS(3), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(1193), - [sym_identifier] = ACTIONS(1195), - [anon_sym_SEMI] = ACTIONS(1193), - [anon_sym_macro_rules_BANG] = ACTIONS(1193), - [anon_sym_LPAREN] = ACTIONS(1193), - [anon_sym_LBRACE] = ACTIONS(1193), - [anon_sym_RBRACE] = ACTIONS(1193), - [anon_sym_LBRACK] = ACTIONS(1193), - [anon_sym_STAR] = ACTIONS(1193), - [anon_sym_u8] = ACTIONS(1195), - [anon_sym_i8] = ACTIONS(1195), - [anon_sym_u16] = ACTIONS(1195), - [anon_sym_i16] = ACTIONS(1195), - [anon_sym_u32] = ACTIONS(1195), - [anon_sym_i32] = ACTIONS(1195), - [anon_sym_u64] = ACTIONS(1195), - [anon_sym_i64] = ACTIONS(1195), - [anon_sym_u128] = ACTIONS(1195), - [anon_sym_i128] = ACTIONS(1195), - [anon_sym_isize] = ACTIONS(1195), - [anon_sym_usize] = ACTIONS(1195), - [anon_sym_f32] = ACTIONS(1195), - [anon_sym_f64] = ACTIONS(1195), - [anon_sym_bool] = ACTIONS(1195), - [anon_sym_str] = ACTIONS(1195), - [anon_sym_char] = ACTIONS(1195), - [anon_sym_SQUOTE] = ACTIONS(1195), - [anon_sym_async] = ACTIONS(1195), - [anon_sym_break] = ACTIONS(1195), - [anon_sym_const] = ACTIONS(1195), - [anon_sym_continue] = ACTIONS(1195), - [anon_sym_default] = ACTIONS(1195), - [anon_sym_enum] = ACTIONS(1195), - [anon_sym_fn] = ACTIONS(1195), - [anon_sym_for] = ACTIONS(1195), - [anon_sym_if] = ACTIONS(1195), - [anon_sym_impl] = ACTIONS(1195), - [anon_sym_let] = ACTIONS(1195), - [anon_sym_loop] = ACTIONS(1195), - [anon_sym_match] = ACTIONS(1195), - [anon_sym_mod] = ACTIONS(1195), - [anon_sym_pub] = ACTIONS(1195), - [anon_sym_return] = ACTIONS(1195), - [anon_sym_static] = ACTIONS(1195), - [anon_sym_struct] = ACTIONS(1195), - [anon_sym_trait] = ACTIONS(1195), - [anon_sym_type] = ACTIONS(1195), - [anon_sym_union] = ACTIONS(1195), - [anon_sym_unsafe] = ACTIONS(1195), - [anon_sym_use] = ACTIONS(1195), - [anon_sym_while] = ACTIONS(1195), - [anon_sym_POUND] = ACTIONS(1193), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_extern] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(1193), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_AMP] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1193), - [anon_sym_DASH] = ACTIONS(1193), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_move] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1193), - [aux_sym_string_literal_token1] = ACTIONS(1193), - [sym_char_literal] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1195), - [anon_sym_false] = ACTIONS(1195), + [ts_builtin_sym_end] = ACTIONS(1206), + [sym_identifier] = ACTIONS(1208), + [anon_sym_SEMI] = ACTIONS(1206), + [anon_sym_macro_rules_BANG] = ACTIONS(1206), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_SQUOTE] = ACTIONS(1208), + [anon_sym_async] = ACTIONS(1208), + [anon_sym_break] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_continue] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_enum] = ACTIONS(1208), + [anon_sym_fn] = ACTIONS(1208), + [anon_sym_for] = ACTIONS(1208), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_BANG] = ACTIONS(1206), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_PIPE] = ACTIONS(1206), + [anon_sym_move] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1195), - [sym_super] = ACTIONS(1195), - [sym_crate] = ACTIONS(1195), - [sym_metavariable] = ACTIONS(1193), - [sym_raw_string_literal] = ACTIONS(1193), - [sym_float_literal] = ACTIONS(1193), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym_raw_string_literal] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), [sym_block_comment] = ACTIONS(3), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(1197), - [sym_identifier] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_macro_rules_BANG] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1197), - [anon_sym_u8] = ACTIONS(1199), - [anon_sym_i8] = ACTIONS(1199), - [anon_sym_u16] = ACTIONS(1199), - [anon_sym_i16] = ACTIONS(1199), - [anon_sym_u32] = ACTIONS(1199), - [anon_sym_i32] = ACTIONS(1199), - [anon_sym_u64] = ACTIONS(1199), - [anon_sym_i64] = ACTIONS(1199), - [anon_sym_u128] = ACTIONS(1199), - [anon_sym_i128] = ACTIONS(1199), - [anon_sym_isize] = ACTIONS(1199), - [anon_sym_usize] = ACTIONS(1199), - [anon_sym_f32] = ACTIONS(1199), - [anon_sym_f64] = ACTIONS(1199), - [anon_sym_bool] = ACTIONS(1199), - [anon_sym_str] = ACTIONS(1199), - [anon_sym_char] = ACTIONS(1199), - [anon_sym_SQUOTE] = ACTIONS(1199), - [anon_sym_async] = ACTIONS(1199), - [anon_sym_break] = ACTIONS(1199), - [anon_sym_const] = ACTIONS(1199), - [anon_sym_continue] = ACTIONS(1199), - [anon_sym_default] = ACTIONS(1199), - [anon_sym_enum] = ACTIONS(1199), - [anon_sym_fn] = ACTIONS(1199), - [anon_sym_for] = ACTIONS(1199), - [anon_sym_if] = ACTIONS(1199), - [anon_sym_impl] = ACTIONS(1199), - [anon_sym_let] = ACTIONS(1199), - [anon_sym_loop] = ACTIONS(1199), - [anon_sym_match] = ACTIONS(1199), - [anon_sym_mod] = ACTIONS(1199), - [anon_sym_pub] = ACTIONS(1199), - [anon_sym_return] = ACTIONS(1199), - [anon_sym_static] = ACTIONS(1199), - [anon_sym_struct] = ACTIONS(1199), - [anon_sym_trait] = ACTIONS(1199), - [anon_sym_type] = ACTIONS(1199), - [anon_sym_union] = ACTIONS(1199), - [anon_sym_unsafe] = ACTIONS(1199), - [anon_sym_use] = ACTIONS(1199), - [anon_sym_while] = ACTIONS(1199), - [anon_sym_POUND] = ACTIONS(1197), - [anon_sym_BANG] = ACTIONS(1197), - [anon_sym_extern] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_COLON_COLON] = ACTIONS(1197), - [anon_sym_AMP] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_move] = ACTIONS(1199), - [sym_integer_literal] = ACTIONS(1197), - [aux_sym_string_literal_token1] = ACTIONS(1197), - [sym_char_literal] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), + [ts_builtin_sym_end] = ACTIONS(1210), + [sym_identifier] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_macro_rules_BANG] = ACTIONS(1210), + [anon_sym_LPAREN] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_STAR] = ACTIONS(1210), + [anon_sym_u8] = ACTIONS(1212), + [anon_sym_i8] = ACTIONS(1212), + [anon_sym_u16] = ACTIONS(1212), + [anon_sym_i16] = ACTIONS(1212), + [anon_sym_u32] = ACTIONS(1212), + [anon_sym_i32] = ACTIONS(1212), + [anon_sym_u64] = ACTIONS(1212), + [anon_sym_i64] = ACTIONS(1212), + [anon_sym_u128] = ACTIONS(1212), + [anon_sym_i128] = ACTIONS(1212), + [anon_sym_isize] = ACTIONS(1212), + [anon_sym_usize] = ACTIONS(1212), + [anon_sym_f32] = ACTIONS(1212), + [anon_sym_f64] = ACTIONS(1212), + [anon_sym_bool] = ACTIONS(1212), + [anon_sym_str] = ACTIONS(1212), + [anon_sym_char] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(1212), + [anon_sym_const] = ACTIONS(1212), + [anon_sym_continue] = ACTIONS(1212), + [anon_sym_default] = ACTIONS(1212), + [anon_sym_enum] = ACTIONS(1212), + [anon_sym_fn] = ACTIONS(1212), + [anon_sym_for] = ACTIONS(1212), + [anon_sym_if] = ACTIONS(1212), + [anon_sym_impl] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_loop] = ACTIONS(1212), + [anon_sym_match] = ACTIONS(1212), + [anon_sym_mod] = ACTIONS(1212), + [anon_sym_pub] = ACTIONS(1212), + [anon_sym_return] = ACTIONS(1212), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_struct] = ACTIONS(1212), + [anon_sym_trait] = ACTIONS(1212), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_union] = ACTIONS(1212), + [anon_sym_unsafe] = ACTIONS(1212), + [anon_sym_use] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1212), + [anon_sym_POUND] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1212), + [anon_sym_LT] = ACTIONS(1210), + [anon_sym_COLON_COLON] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DASH] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1210), + [anon_sym_move] = ACTIONS(1212), + [sym_integer_literal] = ACTIONS(1210), + [aux_sym_string_literal_token1] = ACTIONS(1210), + [sym_char_literal] = ACTIONS(1210), + [anon_sym_true] = ACTIONS(1212), + [anon_sym_false] = ACTIONS(1212), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1199), - [sym_super] = ACTIONS(1199), - [sym_crate] = ACTIONS(1199), - [sym_metavariable] = ACTIONS(1197), - [sym_raw_string_literal] = ACTIONS(1197), - [sym_float_literal] = ACTIONS(1197), + [sym_self] = ACTIONS(1212), + [sym_super] = ACTIONS(1212), + [sym_crate] = ACTIONS(1212), + [sym_metavariable] = ACTIONS(1210), + [sym_raw_string_literal] = ACTIONS(1210), + [sym_float_literal] = ACTIONS(1210), [sym_block_comment] = ACTIONS(3), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(1201), - [sym_identifier] = ACTIONS(1203), - [anon_sym_SEMI] = ACTIONS(1201), - [anon_sym_macro_rules_BANG] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1201), - [anon_sym_LBRACE] = ACTIONS(1201), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1201), - [anon_sym_STAR] = ACTIONS(1201), - [anon_sym_u8] = ACTIONS(1203), - [anon_sym_i8] = ACTIONS(1203), - [anon_sym_u16] = ACTIONS(1203), - [anon_sym_i16] = ACTIONS(1203), - [anon_sym_u32] = ACTIONS(1203), - [anon_sym_i32] = ACTIONS(1203), - [anon_sym_u64] = ACTIONS(1203), - [anon_sym_i64] = ACTIONS(1203), - [anon_sym_u128] = ACTIONS(1203), - [anon_sym_i128] = ACTIONS(1203), - [anon_sym_isize] = ACTIONS(1203), - [anon_sym_usize] = ACTIONS(1203), - [anon_sym_f32] = ACTIONS(1203), - [anon_sym_f64] = ACTIONS(1203), - [anon_sym_bool] = ACTIONS(1203), - [anon_sym_str] = ACTIONS(1203), - [anon_sym_char] = ACTIONS(1203), - [anon_sym_SQUOTE] = ACTIONS(1203), - [anon_sym_async] = ACTIONS(1203), - [anon_sym_break] = ACTIONS(1203), - [anon_sym_const] = ACTIONS(1203), - [anon_sym_continue] = ACTIONS(1203), - [anon_sym_default] = ACTIONS(1203), - [anon_sym_enum] = ACTIONS(1203), - [anon_sym_fn] = ACTIONS(1203), - [anon_sym_for] = ACTIONS(1203), - [anon_sym_if] = ACTIONS(1203), - [anon_sym_impl] = ACTIONS(1203), - [anon_sym_let] = ACTIONS(1203), - [anon_sym_loop] = ACTIONS(1203), - [anon_sym_match] = ACTIONS(1203), - [anon_sym_mod] = ACTIONS(1203), - [anon_sym_pub] = ACTIONS(1203), - [anon_sym_return] = ACTIONS(1203), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_struct] = ACTIONS(1203), - [anon_sym_trait] = ACTIONS(1203), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_union] = ACTIONS(1203), - [anon_sym_unsafe] = ACTIONS(1203), - [anon_sym_use] = ACTIONS(1203), - [anon_sym_while] = ACTIONS(1203), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_BANG] = ACTIONS(1201), - [anon_sym_extern] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1201), - [anon_sym_AMP] = ACTIONS(1201), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DASH] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_move] = ACTIONS(1203), - [sym_integer_literal] = ACTIONS(1201), - [aux_sym_string_literal_token1] = ACTIONS(1201), - [sym_char_literal] = ACTIONS(1201), - [anon_sym_true] = ACTIONS(1203), - [anon_sym_false] = ACTIONS(1203), + [ts_builtin_sym_end] = ACTIONS(1214), + [sym_identifier] = ACTIONS(1216), + [anon_sym_SEMI] = ACTIONS(1214), + [anon_sym_macro_rules_BANG] = ACTIONS(1214), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_LBRACE] = ACTIONS(1214), + [anon_sym_RBRACE] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_u8] = ACTIONS(1216), + [anon_sym_i8] = ACTIONS(1216), + [anon_sym_u16] = ACTIONS(1216), + [anon_sym_i16] = ACTIONS(1216), + [anon_sym_u32] = ACTIONS(1216), + [anon_sym_i32] = ACTIONS(1216), + [anon_sym_u64] = ACTIONS(1216), + [anon_sym_i64] = ACTIONS(1216), + [anon_sym_u128] = ACTIONS(1216), + [anon_sym_i128] = ACTIONS(1216), + [anon_sym_isize] = ACTIONS(1216), + [anon_sym_usize] = ACTIONS(1216), + [anon_sym_f32] = ACTIONS(1216), + [anon_sym_f64] = ACTIONS(1216), + [anon_sym_bool] = ACTIONS(1216), + [anon_sym_str] = ACTIONS(1216), + [anon_sym_char] = ACTIONS(1216), + [anon_sym_SQUOTE] = ACTIONS(1216), + [anon_sym_async] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(1216), + [anon_sym_continue] = ACTIONS(1216), + [anon_sym_default] = ACTIONS(1216), + [anon_sym_enum] = ACTIONS(1216), + [anon_sym_fn] = ACTIONS(1216), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_impl] = ACTIONS(1216), + [anon_sym_let] = ACTIONS(1216), + [anon_sym_loop] = ACTIONS(1216), + [anon_sym_match] = ACTIONS(1216), + [anon_sym_mod] = ACTIONS(1216), + [anon_sym_pub] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_struct] = ACTIONS(1216), + [anon_sym_trait] = ACTIONS(1216), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_union] = ACTIONS(1216), + [anon_sym_unsafe] = ACTIONS(1216), + [anon_sym_use] = ACTIONS(1216), + [anon_sym_while] = ACTIONS(1216), + [anon_sym_POUND] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_extern] = ACTIONS(1216), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_COLON_COLON] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_move] = ACTIONS(1216), + [sym_integer_literal] = ACTIONS(1214), + [aux_sym_string_literal_token1] = ACTIONS(1214), + [sym_char_literal] = ACTIONS(1214), + [anon_sym_true] = ACTIONS(1216), + [anon_sym_false] = ACTIONS(1216), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1203), - [sym_super] = ACTIONS(1203), - [sym_crate] = ACTIONS(1203), - [sym_metavariable] = ACTIONS(1201), - [sym_raw_string_literal] = ACTIONS(1201), - [sym_float_literal] = ACTIONS(1201), + [sym_self] = ACTIONS(1216), + [sym_super] = ACTIONS(1216), + [sym_crate] = ACTIONS(1216), + [sym_metavariable] = ACTIONS(1214), + [sym_raw_string_literal] = ACTIONS(1214), + [sym_float_literal] = ACTIONS(1214), [sym_block_comment] = ACTIONS(3), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(1205), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_macro_rules_BANG] = ACTIONS(1205), - [anon_sym_LPAREN] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1205), - [anon_sym_RBRACE] = ACTIONS(1205), - [anon_sym_LBRACK] = ACTIONS(1205), - [anon_sym_STAR] = ACTIONS(1205), - [anon_sym_u8] = ACTIONS(1207), - [anon_sym_i8] = ACTIONS(1207), - [anon_sym_u16] = ACTIONS(1207), - [anon_sym_i16] = ACTIONS(1207), - [anon_sym_u32] = ACTIONS(1207), - [anon_sym_i32] = ACTIONS(1207), - [anon_sym_u64] = ACTIONS(1207), - [anon_sym_i64] = ACTIONS(1207), - [anon_sym_u128] = ACTIONS(1207), - [anon_sym_i128] = ACTIONS(1207), - [anon_sym_isize] = ACTIONS(1207), - [anon_sym_usize] = ACTIONS(1207), - [anon_sym_f32] = ACTIONS(1207), - [anon_sym_f64] = ACTIONS(1207), - [anon_sym_bool] = ACTIONS(1207), - [anon_sym_str] = ACTIONS(1207), - [anon_sym_char] = ACTIONS(1207), - [anon_sym_SQUOTE] = ACTIONS(1207), - [anon_sym_async] = ACTIONS(1207), - [anon_sym_break] = ACTIONS(1207), - [anon_sym_const] = ACTIONS(1207), - [anon_sym_continue] = ACTIONS(1207), - [anon_sym_default] = ACTIONS(1207), - [anon_sym_enum] = ACTIONS(1207), - [anon_sym_fn] = ACTIONS(1207), - [anon_sym_for] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1207), - [anon_sym_impl] = ACTIONS(1207), - [anon_sym_let] = ACTIONS(1207), - [anon_sym_loop] = ACTIONS(1207), - [anon_sym_match] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_pub] = ACTIONS(1207), - [anon_sym_return] = ACTIONS(1207), - [anon_sym_static] = ACTIONS(1207), - [anon_sym_struct] = ACTIONS(1207), - [anon_sym_trait] = ACTIONS(1207), - [anon_sym_type] = ACTIONS(1207), - [anon_sym_union] = ACTIONS(1207), - [anon_sym_unsafe] = ACTIONS(1207), - [anon_sym_use] = ACTIONS(1207), - [anon_sym_while] = ACTIONS(1207), - [anon_sym_POUND] = ACTIONS(1205), - [anon_sym_BANG] = ACTIONS(1205), - [anon_sym_extern] = ACTIONS(1207), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_COLON_COLON] = ACTIONS(1205), - [anon_sym_AMP] = ACTIONS(1205), - [anon_sym_DOT_DOT] = ACTIONS(1205), - [anon_sym_DASH] = ACTIONS(1205), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_move] = ACTIONS(1207), - [sym_integer_literal] = ACTIONS(1205), - [aux_sym_string_literal_token1] = ACTIONS(1205), - [sym_char_literal] = ACTIONS(1205), - [anon_sym_true] = ACTIONS(1207), - [anon_sym_false] = ACTIONS(1207), + [ts_builtin_sym_end] = ACTIONS(1218), + [sym_identifier] = ACTIONS(1220), + [anon_sym_SEMI] = ACTIONS(1218), + [anon_sym_macro_rules_BANG] = ACTIONS(1218), + [anon_sym_LPAREN] = ACTIONS(1218), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_RBRACE] = ACTIONS(1218), + [anon_sym_LBRACK] = ACTIONS(1218), + [anon_sym_STAR] = ACTIONS(1218), + [anon_sym_u8] = ACTIONS(1220), + [anon_sym_i8] = ACTIONS(1220), + [anon_sym_u16] = ACTIONS(1220), + [anon_sym_i16] = ACTIONS(1220), + [anon_sym_u32] = ACTIONS(1220), + [anon_sym_i32] = ACTIONS(1220), + [anon_sym_u64] = ACTIONS(1220), + [anon_sym_i64] = ACTIONS(1220), + [anon_sym_u128] = ACTIONS(1220), + [anon_sym_i128] = ACTIONS(1220), + [anon_sym_isize] = ACTIONS(1220), + [anon_sym_usize] = ACTIONS(1220), + [anon_sym_f32] = ACTIONS(1220), + [anon_sym_f64] = ACTIONS(1220), + [anon_sym_bool] = ACTIONS(1220), + [anon_sym_str] = ACTIONS(1220), + [anon_sym_char] = ACTIONS(1220), + [anon_sym_SQUOTE] = ACTIONS(1220), + [anon_sym_async] = ACTIONS(1220), + [anon_sym_break] = ACTIONS(1220), + [anon_sym_const] = ACTIONS(1220), + [anon_sym_continue] = ACTIONS(1220), + [anon_sym_default] = ACTIONS(1220), + [anon_sym_enum] = ACTIONS(1220), + [anon_sym_fn] = ACTIONS(1220), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_if] = ACTIONS(1220), + [anon_sym_impl] = ACTIONS(1220), + [anon_sym_let] = ACTIONS(1220), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1220), + [anon_sym_mod] = ACTIONS(1220), + [anon_sym_pub] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1220), + [anon_sym_struct] = ACTIONS(1220), + [anon_sym_trait] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1220), + [anon_sym_union] = ACTIONS(1220), + [anon_sym_unsafe] = ACTIONS(1220), + [anon_sym_use] = ACTIONS(1220), + [anon_sym_while] = ACTIONS(1220), + [anon_sym_POUND] = ACTIONS(1218), + [anon_sym_BANG] = ACTIONS(1218), + [anon_sym_extern] = ACTIONS(1220), + [anon_sym_LT] = ACTIONS(1218), + [anon_sym_COLON_COLON] = ACTIONS(1218), + [anon_sym_AMP] = ACTIONS(1218), + [anon_sym_DOT_DOT] = ACTIONS(1218), + [anon_sym_DASH] = ACTIONS(1218), + [anon_sym_PIPE] = ACTIONS(1218), + [anon_sym_move] = ACTIONS(1220), + [sym_integer_literal] = ACTIONS(1218), + [aux_sym_string_literal_token1] = ACTIONS(1218), + [sym_char_literal] = ACTIONS(1218), + [anon_sym_true] = ACTIONS(1220), + [anon_sym_false] = ACTIONS(1220), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1207), - [sym_super] = ACTIONS(1207), - [sym_crate] = ACTIONS(1207), - [sym_metavariable] = ACTIONS(1205), - [sym_raw_string_literal] = ACTIONS(1205), - [sym_float_literal] = ACTIONS(1205), + [sym_self] = ACTIONS(1220), + [sym_super] = ACTIONS(1220), + [sym_crate] = ACTIONS(1220), + [sym_metavariable] = ACTIONS(1218), + [sym_raw_string_literal] = ACTIONS(1218), + [sym_float_literal] = ACTIONS(1218), [sym_block_comment] = ACTIONS(3), }, [282] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1211), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1222), + [sym_identifier] = ACTIONS(1224), + [anon_sym_SEMI] = ACTIONS(1222), + [anon_sym_macro_rules_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1222), + [anon_sym_LBRACE] = ACTIONS(1222), + [anon_sym_RBRACE] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(1222), + [anon_sym_STAR] = ACTIONS(1222), + [anon_sym_u8] = ACTIONS(1224), + [anon_sym_i8] = ACTIONS(1224), + [anon_sym_u16] = ACTIONS(1224), + [anon_sym_i16] = ACTIONS(1224), + [anon_sym_u32] = ACTIONS(1224), + [anon_sym_i32] = ACTIONS(1224), + [anon_sym_u64] = ACTIONS(1224), + [anon_sym_i64] = ACTIONS(1224), + [anon_sym_u128] = ACTIONS(1224), + [anon_sym_i128] = ACTIONS(1224), + [anon_sym_isize] = ACTIONS(1224), + [anon_sym_usize] = ACTIONS(1224), + [anon_sym_f32] = ACTIONS(1224), + [anon_sym_f64] = ACTIONS(1224), + [anon_sym_bool] = ACTIONS(1224), + [anon_sym_str] = ACTIONS(1224), + [anon_sym_char] = ACTIONS(1224), + [anon_sym_SQUOTE] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(1224), + [anon_sym_break] = ACTIONS(1224), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1224), + [anon_sym_default] = ACTIONS(1224), + [anon_sym_enum] = ACTIONS(1224), + [anon_sym_fn] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(1224), + [anon_sym_if] = ACTIONS(1224), + [anon_sym_impl] = ACTIONS(1224), + [anon_sym_let] = ACTIONS(1224), + [anon_sym_loop] = ACTIONS(1224), + [anon_sym_match] = ACTIONS(1224), + [anon_sym_mod] = ACTIONS(1224), + [anon_sym_pub] = ACTIONS(1224), + [anon_sym_return] = ACTIONS(1224), + [anon_sym_static] = ACTIONS(1224), + [anon_sym_struct] = ACTIONS(1224), + [anon_sym_trait] = ACTIONS(1224), + [anon_sym_type] = ACTIONS(1224), + [anon_sym_union] = ACTIONS(1224), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_use] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1224), + [anon_sym_POUND] = ACTIONS(1222), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_extern] = ACTIONS(1224), + [anon_sym_LT] = ACTIONS(1222), + [anon_sym_COLON_COLON] = ACTIONS(1222), + [anon_sym_AMP] = ACTIONS(1222), + [anon_sym_DOT_DOT] = ACTIONS(1222), + [anon_sym_DASH] = ACTIONS(1222), + [anon_sym_PIPE] = ACTIONS(1222), + [anon_sym_move] = ACTIONS(1224), + [sym_integer_literal] = ACTIONS(1222), + [aux_sym_string_literal_token1] = ACTIONS(1222), + [sym_char_literal] = ACTIONS(1222), + [anon_sym_true] = ACTIONS(1224), + [anon_sym_false] = ACTIONS(1224), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1224), + [sym_super] = ACTIONS(1224), + [sym_crate] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1222), + [sym_raw_string_literal] = ACTIONS(1222), + [sym_float_literal] = ACTIONS(1222), [sym_block_comment] = ACTIONS(3), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(1213), - [sym_identifier] = ACTIONS(1215), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_macro_rules_BANG] = ACTIONS(1213), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_LBRACE] = ACTIONS(1213), - [anon_sym_RBRACE] = ACTIONS(1213), - [anon_sym_LBRACK] = ACTIONS(1213), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_u8] = ACTIONS(1215), - [anon_sym_i8] = ACTIONS(1215), - [anon_sym_u16] = ACTIONS(1215), - [anon_sym_i16] = ACTIONS(1215), - [anon_sym_u32] = ACTIONS(1215), - [anon_sym_i32] = ACTIONS(1215), - [anon_sym_u64] = ACTIONS(1215), - [anon_sym_i64] = ACTIONS(1215), - [anon_sym_u128] = ACTIONS(1215), - [anon_sym_i128] = ACTIONS(1215), - [anon_sym_isize] = ACTIONS(1215), - [anon_sym_usize] = ACTIONS(1215), - [anon_sym_f32] = ACTIONS(1215), - [anon_sym_f64] = ACTIONS(1215), - [anon_sym_bool] = ACTIONS(1215), - [anon_sym_str] = ACTIONS(1215), - [anon_sym_char] = ACTIONS(1215), - [anon_sym_SQUOTE] = ACTIONS(1215), - [anon_sym_async] = ACTIONS(1215), - [anon_sym_break] = ACTIONS(1215), - [anon_sym_const] = ACTIONS(1215), - [anon_sym_continue] = ACTIONS(1215), - [anon_sym_default] = ACTIONS(1215), - [anon_sym_enum] = ACTIONS(1215), - [anon_sym_fn] = ACTIONS(1215), - [anon_sym_for] = ACTIONS(1215), - [anon_sym_if] = ACTIONS(1215), - [anon_sym_impl] = ACTIONS(1215), - [anon_sym_let] = ACTIONS(1215), - [anon_sym_loop] = ACTIONS(1215), - [anon_sym_match] = ACTIONS(1215), - [anon_sym_mod] = ACTIONS(1215), - [anon_sym_pub] = ACTIONS(1215), - [anon_sym_return] = ACTIONS(1215), - [anon_sym_static] = ACTIONS(1215), - [anon_sym_struct] = ACTIONS(1215), - [anon_sym_trait] = ACTIONS(1215), - [anon_sym_type] = ACTIONS(1215), - [anon_sym_union] = ACTIONS(1215), - [anon_sym_unsafe] = ACTIONS(1215), - [anon_sym_use] = ACTIONS(1215), - [anon_sym_while] = ACTIONS(1215), - [anon_sym_POUND] = ACTIONS(1213), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_extern] = ACTIONS(1215), - [anon_sym_LT] = ACTIONS(1213), - [anon_sym_COLON_COLON] = ACTIONS(1213), - [anon_sym_AMP] = ACTIONS(1213), - [anon_sym_DOT_DOT] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [anon_sym_PIPE] = ACTIONS(1213), - [anon_sym_move] = ACTIONS(1215), - [sym_integer_literal] = ACTIONS(1213), - [aux_sym_string_literal_token1] = ACTIONS(1213), - [sym_char_literal] = ACTIONS(1213), - [anon_sym_true] = ACTIONS(1215), - [anon_sym_false] = ACTIONS(1215), + [ts_builtin_sym_end] = ACTIONS(1226), + [sym_identifier] = ACTIONS(1228), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_macro_rules_BANG] = ACTIONS(1226), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_LBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_STAR] = ACTIONS(1226), + [anon_sym_u8] = ACTIONS(1228), + [anon_sym_i8] = ACTIONS(1228), + [anon_sym_u16] = ACTIONS(1228), + [anon_sym_i16] = ACTIONS(1228), + [anon_sym_u32] = ACTIONS(1228), + [anon_sym_i32] = ACTIONS(1228), + [anon_sym_u64] = ACTIONS(1228), + [anon_sym_i64] = ACTIONS(1228), + [anon_sym_u128] = ACTIONS(1228), + [anon_sym_i128] = ACTIONS(1228), + [anon_sym_isize] = ACTIONS(1228), + [anon_sym_usize] = ACTIONS(1228), + [anon_sym_f32] = ACTIONS(1228), + [anon_sym_f64] = ACTIONS(1228), + [anon_sym_bool] = ACTIONS(1228), + [anon_sym_str] = ACTIONS(1228), + [anon_sym_char] = ACTIONS(1228), + [anon_sym_SQUOTE] = ACTIONS(1228), + [anon_sym_async] = ACTIONS(1228), + [anon_sym_break] = ACTIONS(1228), + [anon_sym_const] = ACTIONS(1228), + [anon_sym_continue] = ACTIONS(1228), + [anon_sym_default] = ACTIONS(1228), + [anon_sym_enum] = ACTIONS(1228), + [anon_sym_fn] = ACTIONS(1228), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_if] = ACTIONS(1228), + [anon_sym_impl] = ACTIONS(1228), + [anon_sym_let] = ACTIONS(1228), + [anon_sym_loop] = ACTIONS(1228), + [anon_sym_match] = ACTIONS(1228), + [anon_sym_mod] = ACTIONS(1228), + [anon_sym_pub] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1228), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_struct] = ACTIONS(1228), + [anon_sym_trait] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_union] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(1228), + [anon_sym_use] = ACTIONS(1228), + [anon_sym_while] = ACTIONS(1228), + [anon_sym_POUND] = ACTIONS(1226), + [anon_sym_BANG] = ACTIONS(1226), + [anon_sym_extern] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1226), + [anon_sym_COLON_COLON] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), + [anon_sym_DOT_DOT] = ACTIONS(1226), + [anon_sym_DASH] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1226), + [anon_sym_move] = ACTIONS(1228), + [sym_integer_literal] = ACTIONS(1226), + [aux_sym_string_literal_token1] = ACTIONS(1226), + [sym_char_literal] = ACTIONS(1226), + [anon_sym_true] = ACTIONS(1228), + [anon_sym_false] = ACTIONS(1228), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1215), - [sym_super] = ACTIONS(1215), - [sym_crate] = ACTIONS(1215), - [sym_metavariable] = ACTIONS(1213), - [sym_raw_string_literal] = ACTIONS(1213), - [sym_float_literal] = ACTIONS(1213), + [sym_self] = ACTIONS(1228), + [sym_super] = ACTIONS(1228), + [sym_crate] = ACTIONS(1228), + [sym_metavariable] = ACTIONS(1226), + [sym_raw_string_literal] = ACTIONS(1226), + [sym_float_literal] = ACTIONS(1226), [sym_block_comment] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1217), - [sym_identifier] = ACTIONS(1219), - [anon_sym_SEMI] = ACTIONS(1217), - [anon_sym_macro_rules_BANG] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1217), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_LBRACK] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(1217), - [anon_sym_u8] = ACTIONS(1219), - [anon_sym_i8] = ACTIONS(1219), - [anon_sym_u16] = ACTIONS(1219), - [anon_sym_i16] = ACTIONS(1219), - [anon_sym_u32] = ACTIONS(1219), - [anon_sym_i32] = ACTIONS(1219), - [anon_sym_u64] = ACTIONS(1219), - [anon_sym_i64] = ACTIONS(1219), - [anon_sym_u128] = ACTIONS(1219), - [anon_sym_i128] = ACTIONS(1219), - [anon_sym_isize] = ACTIONS(1219), - [anon_sym_usize] = ACTIONS(1219), - [anon_sym_f32] = ACTIONS(1219), - [anon_sym_f64] = ACTIONS(1219), - [anon_sym_bool] = ACTIONS(1219), - [anon_sym_str] = ACTIONS(1219), - [anon_sym_char] = ACTIONS(1219), - [anon_sym_SQUOTE] = ACTIONS(1219), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(1219), - [anon_sym_const] = ACTIONS(1219), - [anon_sym_continue] = ACTIONS(1219), - [anon_sym_default] = ACTIONS(1219), - [anon_sym_enum] = ACTIONS(1219), - [anon_sym_fn] = ACTIONS(1219), - [anon_sym_for] = ACTIONS(1219), - [anon_sym_if] = ACTIONS(1219), - [anon_sym_impl] = ACTIONS(1219), - [anon_sym_let] = ACTIONS(1219), - [anon_sym_loop] = ACTIONS(1219), - [anon_sym_match] = ACTIONS(1219), - [anon_sym_mod] = ACTIONS(1219), - [anon_sym_pub] = ACTIONS(1219), - [anon_sym_return] = ACTIONS(1219), - [anon_sym_static] = ACTIONS(1219), - [anon_sym_struct] = ACTIONS(1219), - [anon_sym_trait] = ACTIONS(1219), - [anon_sym_type] = ACTIONS(1219), - [anon_sym_union] = ACTIONS(1219), - [anon_sym_unsafe] = ACTIONS(1219), - [anon_sym_use] = ACTIONS(1219), - [anon_sym_while] = ACTIONS(1219), - [anon_sym_POUND] = ACTIONS(1217), - [anon_sym_BANG] = ACTIONS(1217), - [anon_sym_extern] = ACTIONS(1219), - [anon_sym_LT] = ACTIONS(1217), - [anon_sym_COLON_COLON] = ACTIONS(1217), - [anon_sym_AMP] = ACTIONS(1217), - [anon_sym_DOT_DOT] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1217), - [anon_sym_PIPE] = ACTIONS(1217), - [anon_sym_move] = ACTIONS(1219), - [sym_integer_literal] = ACTIONS(1217), - [aux_sym_string_literal_token1] = ACTIONS(1217), - [sym_char_literal] = ACTIONS(1217), - [anon_sym_true] = ACTIONS(1219), - [anon_sym_false] = ACTIONS(1219), + [ts_builtin_sym_end] = ACTIONS(1230), + [sym_identifier] = ACTIONS(1232), + [anon_sym_SEMI] = ACTIONS(1230), + [anon_sym_macro_rules_BANG] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_RBRACE] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(1230), + [anon_sym_STAR] = ACTIONS(1230), + [anon_sym_u8] = ACTIONS(1232), + [anon_sym_i8] = ACTIONS(1232), + [anon_sym_u16] = ACTIONS(1232), + [anon_sym_i16] = ACTIONS(1232), + [anon_sym_u32] = ACTIONS(1232), + [anon_sym_i32] = ACTIONS(1232), + [anon_sym_u64] = ACTIONS(1232), + [anon_sym_i64] = ACTIONS(1232), + [anon_sym_u128] = ACTIONS(1232), + [anon_sym_i128] = ACTIONS(1232), + [anon_sym_isize] = ACTIONS(1232), + [anon_sym_usize] = ACTIONS(1232), + [anon_sym_f32] = ACTIONS(1232), + [anon_sym_f64] = ACTIONS(1232), + [anon_sym_bool] = ACTIONS(1232), + [anon_sym_str] = ACTIONS(1232), + [anon_sym_char] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1232), + [anon_sym_async] = ACTIONS(1232), + [anon_sym_break] = ACTIONS(1232), + [anon_sym_const] = ACTIONS(1232), + [anon_sym_continue] = ACTIONS(1232), + [anon_sym_default] = ACTIONS(1232), + [anon_sym_enum] = ACTIONS(1232), + [anon_sym_fn] = ACTIONS(1232), + [anon_sym_for] = ACTIONS(1232), + [anon_sym_if] = ACTIONS(1232), + [anon_sym_impl] = ACTIONS(1232), + [anon_sym_let] = ACTIONS(1232), + [anon_sym_loop] = ACTIONS(1232), + [anon_sym_match] = ACTIONS(1232), + [anon_sym_mod] = ACTIONS(1232), + [anon_sym_pub] = ACTIONS(1232), + [anon_sym_return] = ACTIONS(1232), + [anon_sym_static] = ACTIONS(1232), + [anon_sym_struct] = ACTIONS(1232), + [anon_sym_trait] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1232), + [anon_sym_union] = ACTIONS(1232), + [anon_sym_unsafe] = ACTIONS(1232), + [anon_sym_use] = ACTIONS(1232), + [anon_sym_while] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1230), + [anon_sym_BANG] = ACTIONS(1230), + [anon_sym_extern] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(1230), + [anon_sym_AMP] = ACTIONS(1230), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_DASH] = ACTIONS(1230), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_move] = ACTIONS(1232), + [sym_integer_literal] = ACTIONS(1230), + [aux_sym_string_literal_token1] = ACTIONS(1230), + [sym_char_literal] = ACTIONS(1230), + [anon_sym_true] = ACTIONS(1232), + [anon_sym_false] = ACTIONS(1232), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1219), - [sym_super] = ACTIONS(1219), - [sym_crate] = ACTIONS(1219), - [sym_metavariable] = ACTIONS(1217), - [sym_raw_string_literal] = ACTIONS(1217), - [sym_float_literal] = ACTIONS(1217), + [sym_self] = ACTIONS(1232), + [sym_super] = ACTIONS(1232), + [sym_crate] = ACTIONS(1232), + [sym_metavariable] = ACTIONS(1230), + [sym_raw_string_literal] = ACTIONS(1230), + [sym_float_literal] = ACTIONS(1230), [sym_block_comment] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1221), - [sym_identifier] = ACTIONS(1223), - [anon_sym_SEMI] = ACTIONS(1221), - [anon_sym_macro_rules_BANG] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1221), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_LBRACK] = ACTIONS(1221), - [anon_sym_STAR] = ACTIONS(1221), - [anon_sym_u8] = ACTIONS(1223), - [anon_sym_i8] = ACTIONS(1223), - [anon_sym_u16] = ACTIONS(1223), - [anon_sym_i16] = ACTIONS(1223), - [anon_sym_u32] = ACTIONS(1223), - [anon_sym_i32] = ACTIONS(1223), - [anon_sym_u64] = ACTIONS(1223), - [anon_sym_i64] = ACTIONS(1223), - [anon_sym_u128] = ACTIONS(1223), - [anon_sym_i128] = ACTIONS(1223), - [anon_sym_isize] = ACTIONS(1223), - [anon_sym_usize] = ACTIONS(1223), - [anon_sym_f32] = ACTIONS(1223), - [anon_sym_f64] = ACTIONS(1223), - [anon_sym_bool] = ACTIONS(1223), - [anon_sym_str] = ACTIONS(1223), - [anon_sym_char] = ACTIONS(1223), - [anon_sym_SQUOTE] = ACTIONS(1223), - [anon_sym_async] = ACTIONS(1223), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_const] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1223), - [anon_sym_default] = ACTIONS(1223), - [anon_sym_enum] = ACTIONS(1223), - [anon_sym_fn] = ACTIONS(1223), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_if] = ACTIONS(1223), - [anon_sym_impl] = ACTIONS(1223), - [anon_sym_let] = ACTIONS(1223), - [anon_sym_loop] = ACTIONS(1223), - [anon_sym_match] = ACTIONS(1223), - [anon_sym_mod] = ACTIONS(1223), - [anon_sym_pub] = ACTIONS(1223), - [anon_sym_return] = ACTIONS(1223), - [anon_sym_static] = ACTIONS(1223), - [anon_sym_struct] = ACTIONS(1223), - [anon_sym_trait] = ACTIONS(1223), - [anon_sym_type] = ACTIONS(1223), - [anon_sym_union] = ACTIONS(1223), - [anon_sym_unsafe] = ACTIONS(1223), - [anon_sym_use] = ACTIONS(1223), - [anon_sym_while] = ACTIONS(1223), - [anon_sym_POUND] = ACTIONS(1221), - [anon_sym_BANG] = ACTIONS(1221), - [anon_sym_extern] = ACTIONS(1223), - [anon_sym_LT] = ACTIONS(1221), - [anon_sym_COLON_COLON] = ACTIONS(1221), - [anon_sym_AMP] = ACTIONS(1221), - [anon_sym_DOT_DOT] = ACTIONS(1221), - [anon_sym_DASH] = ACTIONS(1221), - [anon_sym_PIPE] = ACTIONS(1221), - [anon_sym_move] = ACTIONS(1223), - [sym_integer_literal] = ACTIONS(1221), - [aux_sym_string_literal_token1] = ACTIONS(1221), - [sym_char_literal] = ACTIONS(1221), - [anon_sym_true] = ACTIONS(1223), - [anon_sym_false] = ACTIONS(1223), + [ts_builtin_sym_end] = ACTIONS(1234), + [sym_identifier] = ACTIONS(1236), + [anon_sym_SEMI] = ACTIONS(1234), + [anon_sym_macro_rules_BANG] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(1234), + [anon_sym_RBRACE] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_u8] = ACTIONS(1236), + [anon_sym_i8] = ACTIONS(1236), + [anon_sym_u16] = ACTIONS(1236), + [anon_sym_i16] = ACTIONS(1236), + [anon_sym_u32] = ACTIONS(1236), + [anon_sym_i32] = ACTIONS(1236), + [anon_sym_u64] = ACTIONS(1236), + [anon_sym_i64] = ACTIONS(1236), + [anon_sym_u128] = ACTIONS(1236), + [anon_sym_i128] = ACTIONS(1236), + [anon_sym_isize] = ACTIONS(1236), + [anon_sym_usize] = ACTIONS(1236), + [anon_sym_f32] = ACTIONS(1236), + [anon_sym_f64] = ACTIONS(1236), + [anon_sym_bool] = ACTIONS(1236), + [anon_sym_str] = ACTIONS(1236), + [anon_sym_char] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1236), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_break] = ACTIONS(1236), + [anon_sym_const] = ACTIONS(1236), + [anon_sym_continue] = ACTIONS(1236), + [anon_sym_default] = ACTIONS(1236), + [anon_sym_enum] = ACTIONS(1236), + [anon_sym_fn] = ACTIONS(1236), + [anon_sym_for] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1236), + [anon_sym_impl] = ACTIONS(1236), + [anon_sym_let] = ACTIONS(1236), + [anon_sym_loop] = ACTIONS(1236), + [anon_sym_match] = ACTIONS(1236), + [anon_sym_mod] = ACTIONS(1236), + [anon_sym_pub] = ACTIONS(1236), + [anon_sym_return] = ACTIONS(1236), + [anon_sym_static] = ACTIONS(1236), + [anon_sym_struct] = ACTIONS(1236), + [anon_sym_trait] = ACTIONS(1236), + [anon_sym_type] = ACTIONS(1236), + [anon_sym_union] = ACTIONS(1236), + [anon_sym_unsafe] = ACTIONS(1236), + [anon_sym_use] = ACTIONS(1236), + [anon_sym_while] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1234), + [anon_sym_BANG] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_COLON_COLON] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1236), + [sym_integer_literal] = ACTIONS(1234), + [aux_sym_string_literal_token1] = ACTIONS(1234), + [sym_char_literal] = ACTIONS(1234), + [anon_sym_true] = ACTIONS(1236), + [anon_sym_false] = ACTIONS(1236), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1223), - [sym_super] = ACTIONS(1223), - [sym_crate] = ACTIONS(1223), - [sym_metavariable] = ACTIONS(1221), - [sym_raw_string_literal] = ACTIONS(1221), - [sym_float_literal] = ACTIONS(1221), + [sym_self] = ACTIONS(1236), + [sym_super] = ACTIONS(1236), + [sym_crate] = ACTIONS(1236), + [sym_metavariable] = ACTIONS(1234), + [sym_raw_string_literal] = ACTIONS(1234), + [sym_float_literal] = ACTIONS(1234), [sym_block_comment] = ACTIONS(3), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(1225), - [sym_identifier] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_macro_rules_BANG] = ACTIONS(1225), - [anon_sym_LPAREN] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1225), - [anon_sym_LBRACK] = ACTIONS(1225), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_u8] = ACTIONS(1227), - [anon_sym_i8] = ACTIONS(1227), - [anon_sym_u16] = ACTIONS(1227), - [anon_sym_i16] = ACTIONS(1227), - [anon_sym_u32] = ACTIONS(1227), - [anon_sym_i32] = ACTIONS(1227), - [anon_sym_u64] = ACTIONS(1227), - [anon_sym_i64] = ACTIONS(1227), - [anon_sym_u128] = ACTIONS(1227), - [anon_sym_i128] = ACTIONS(1227), - [anon_sym_isize] = ACTIONS(1227), - [anon_sym_usize] = ACTIONS(1227), - [anon_sym_f32] = ACTIONS(1227), - [anon_sym_f64] = ACTIONS(1227), - [anon_sym_bool] = ACTIONS(1227), - [anon_sym_str] = ACTIONS(1227), - [anon_sym_char] = ACTIONS(1227), - [anon_sym_SQUOTE] = ACTIONS(1227), - [anon_sym_async] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_default] = ACTIONS(1227), - [anon_sym_enum] = ACTIONS(1227), - [anon_sym_fn] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_impl] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_mod] = ACTIONS(1227), - [anon_sym_pub] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_static] = ACTIONS(1227), - [anon_sym_struct] = ACTIONS(1227), - [anon_sym_trait] = ACTIONS(1227), - [anon_sym_type] = ACTIONS(1227), - [anon_sym_union] = ACTIONS(1227), - [anon_sym_unsafe] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_POUND] = ACTIONS(1225), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1225), - [anon_sym_COLON_COLON] = ACTIONS(1225), - [anon_sym_AMP] = ACTIONS(1225), - [anon_sym_DOT_DOT] = ACTIONS(1225), - [anon_sym_DASH] = ACTIONS(1225), - [anon_sym_PIPE] = ACTIONS(1225), - [anon_sym_move] = ACTIONS(1227), - [sym_integer_literal] = ACTIONS(1225), - [aux_sym_string_literal_token1] = ACTIONS(1225), - [sym_char_literal] = ACTIONS(1225), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), + [ts_builtin_sym_end] = ACTIONS(1238), + [sym_identifier] = ACTIONS(1240), + [anon_sym_SEMI] = ACTIONS(1238), + [anon_sym_macro_rules_BANG] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1238), + [anon_sym_LBRACE] = ACTIONS(1238), + [anon_sym_RBRACE] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_u8] = ACTIONS(1240), + [anon_sym_i8] = ACTIONS(1240), + [anon_sym_u16] = ACTIONS(1240), + [anon_sym_i16] = ACTIONS(1240), + [anon_sym_u32] = ACTIONS(1240), + [anon_sym_i32] = ACTIONS(1240), + [anon_sym_u64] = ACTIONS(1240), + [anon_sym_i64] = ACTIONS(1240), + [anon_sym_u128] = ACTIONS(1240), + [anon_sym_i128] = ACTIONS(1240), + [anon_sym_isize] = ACTIONS(1240), + [anon_sym_usize] = ACTIONS(1240), + [anon_sym_f32] = ACTIONS(1240), + [anon_sym_f64] = ACTIONS(1240), + [anon_sym_bool] = ACTIONS(1240), + [anon_sym_str] = ACTIONS(1240), + [anon_sym_char] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1240), + [anon_sym_async] = ACTIONS(1240), + [anon_sym_break] = ACTIONS(1240), + [anon_sym_const] = ACTIONS(1240), + [anon_sym_continue] = ACTIONS(1240), + [anon_sym_default] = ACTIONS(1240), + [anon_sym_enum] = ACTIONS(1240), + [anon_sym_fn] = ACTIONS(1240), + [anon_sym_for] = ACTIONS(1240), + [anon_sym_if] = ACTIONS(1240), + [anon_sym_impl] = ACTIONS(1240), + [anon_sym_let] = ACTIONS(1240), + [anon_sym_loop] = ACTIONS(1240), + [anon_sym_match] = ACTIONS(1240), + [anon_sym_mod] = ACTIONS(1240), + [anon_sym_pub] = ACTIONS(1240), + [anon_sym_return] = ACTIONS(1240), + [anon_sym_static] = ACTIONS(1240), + [anon_sym_struct] = ACTIONS(1240), + [anon_sym_trait] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1240), + [anon_sym_union] = ACTIONS(1240), + [anon_sym_unsafe] = ACTIONS(1240), + [anon_sym_use] = ACTIONS(1240), + [anon_sym_while] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1238), + [anon_sym_BANG] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_COLON_COLON] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1240), + [sym_integer_literal] = ACTIONS(1238), + [aux_sym_string_literal_token1] = ACTIONS(1238), + [sym_char_literal] = ACTIONS(1238), + [anon_sym_true] = ACTIONS(1240), + [anon_sym_false] = ACTIONS(1240), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1227), - [sym_super] = ACTIONS(1227), - [sym_crate] = ACTIONS(1227), - [sym_metavariable] = ACTIONS(1225), - [sym_raw_string_literal] = ACTIONS(1225), - [sym_float_literal] = ACTIONS(1225), + [sym_self] = ACTIONS(1240), + [sym_super] = ACTIONS(1240), + [sym_crate] = ACTIONS(1240), + [sym_metavariable] = ACTIONS(1238), + [sym_raw_string_literal] = ACTIONS(1238), + [sym_float_literal] = ACTIONS(1238), [sym_block_comment] = ACTIONS(3), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(1229), - [sym_identifier] = ACTIONS(1231), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_macro_rules_BANG] = ACTIONS(1229), - [anon_sym_LPAREN] = ACTIONS(1229), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_RBRACE] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_u8] = ACTIONS(1231), - [anon_sym_i8] = ACTIONS(1231), - [anon_sym_u16] = ACTIONS(1231), - [anon_sym_i16] = ACTIONS(1231), - [anon_sym_u32] = ACTIONS(1231), - [anon_sym_i32] = ACTIONS(1231), - [anon_sym_u64] = ACTIONS(1231), - [anon_sym_i64] = ACTIONS(1231), - [anon_sym_u128] = ACTIONS(1231), - [anon_sym_i128] = ACTIONS(1231), - [anon_sym_isize] = ACTIONS(1231), - [anon_sym_usize] = ACTIONS(1231), - [anon_sym_f32] = ACTIONS(1231), - [anon_sym_f64] = ACTIONS(1231), - [anon_sym_bool] = ACTIONS(1231), - [anon_sym_str] = ACTIONS(1231), - [anon_sym_char] = ACTIONS(1231), - [anon_sym_SQUOTE] = ACTIONS(1231), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(1231), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(1231), - [anon_sym_default] = ACTIONS(1231), - [anon_sym_enum] = ACTIONS(1231), - [anon_sym_fn] = ACTIONS(1231), - [anon_sym_for] = ACTIONS(1231), - [anon_sym_if] = ACTIONS(1231), - [anon_sym_impl] = ACTIONS(1231), - [anon_sym_let] = ACTIONS(1231), - [anon_sym_loop] = ACTIONS(1231), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_mod] = ACTIONS(1231), - [anon_sym_pub] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(1231), - [anon_sym_static] = ACTIONS(1231), - [anon_sym_struct] = ACTIONS(1231), - [anon_sym_trait] = ACTIONS(1231), - [anon_sym_type] = ACTIONS(1231), - [anon_sym_union] = ACTIONS(1231), - [anon_sym_unsafe] = ACTIONS(1231), - [anon_sym_use] = ACTIONS(1231), - [anon_sym_while] = ACTIONS(1231), - [anon_sym_POUND] = ACTIONS(1229), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_extern] = ACTIONS(1231), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_COLON_COLON] = ACTIONS(1229), - [anon_sym_AMP] = ACTIONS(1229), - [anon_sym_DOT_DOT] = ACTIONS(1229), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_PIPE] = ACTIONS(1229), - [anon_sym_move] = ACTIONS(1231), - [sym_integer_literal] = ACTIONS(1229), - [aux_sym_string_literal_token1] = ACTIONS(1229), - [sym_char_literal] = ACTIONS(1229), - [anon_sym_true] = ACTIONS(1231), - [anon_sym_false] = ACTIONS(1231), + [ts_builtin_sym_end] = ACTIONS(1242), + [sym_identifier] = ACTIONS(1244), + [anon_sym_SEMI] = ACTIONS(1242), + [anon_sym_macro_rules_BANG] = ACTIONS(1242), + [anon_sym_LPAREN] = ACTIONS(1242), + [anon_sym_LBRACE] = ACTIONS(1242), + [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_u8] = ACTIONS(1244), + [anon_sym_i8] = ACTIONS(1244), + [anon_sym_u16] = ACTIONS(1244), + [anon_sym_i16] = ACTIONS(1244), + [anon_sym_u32] = ACTIONS(1244), + [anon_sym_i32] = ACTIONS(1244), + [anon_sym_u64] = ACTIONS(1244), + [anon_sym_i64] = ACTIONS(1244), + [anon_sym_u128] = ACTIONS(1244), + [anon_sym_i128] = ACTIONS(1244), + [anon_sym_isize] = ACTIONS(1244), + [anon_sym_usize] = ACTIONS(1244), + [anon_sym_f32] = ACTIONS(1244), + [anon_sym_f64] = ACTIONS(1244), + [anon_sym_bool] = ACTIONS(1244), + [anon_sym_str] = ACTIONS(1244), + [anon_sym_char] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1244), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_break] = ACTIONS(1244), + [anon_sym_const] = ACTIONS(1244), + [anon_sym_continue] = ACTIONS(1244), + [anon_sym_default] = ACTIONS(1244), + [anon_sym_enum] = ACTIONS(1244), + [anon_sym_fn] = ACTIONS(1244), + [anon_sym_for] = ACTIONS(1244), + [anon_sym_if] = ACTIONS(1244), + [anon_sym_impl] = ACTIONS(1244), + [anon_sym_let] = ACTIONS(1244), + [anon_sym_loop] = ACTIONS(1244), + [anon_sym_match] = ACTIONS(1244), + [anon_sym_mod] = ACTIONS(1244), + [anon_sym_pub] = ACTIONS(1244), + [anon_sym_return] = ACTIONS(1244), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_struct] = ACTIONS(1244), + [anon_sym_trait] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_union] = ACTIONS(1244), + [anon_sym_unsafe] = ACTIONS(1244), + [anon_sym_use] = ACTIONS(1244), + [anon_sym_while] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_COLON_COLON] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1244), + [sym_integer_literal] = ACTIONS(1242), + [aux_sym_string_literal_token1] = ACTIONS(1242), + [sym_char_literal] = ACTIONS(1242), + [anon_sym_true] = ACTIONS(1244), + [anon_sym_false] = ACTIONS(1244), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1231), - [sym_super] = ACTIONS(1231), - [sym_crate] = ACTIONS(1231), - [sym_metavariable] = ACTIONS(1229), - [sym_raw_string_literal] = ACTIONS(1229), - [sym_float_literal] = ACTIONS(1229), + [sym_self] = ACTIONS(1244), + [sym_super] = ACTIONS(1244), + [sym_crate] = ACTIONS(1244), + [sym_metavariable] = ACTIONS(1242), + [sym_raw_string_literal] = ACTIONS(1242), + [sym_float_literal] = ACTIONS(1242), [sym_block_comment] = ACTIONS(3), }, [288] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1248), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_macro_rules_BANG] = ACTIONS(1246), + [anon_sym_LPAREN] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(1246), + [anon_sym_RBRACE] = ACTIONS(1246), + [anon_sym_LBRACK] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_u8] = ACTIONS(1248), + [anon_sym_i8] = ACTIONS(1248), + [anon_sym_u16] = ACTIONS(1248), + [anon_sym_i16] = ACTIONS(1248), + [anon_sym_u32] = ACTIONS(1248), + [anon_sym_i32] = ACTIONS(1248), + [anon_sym_u64] = ACTIONS(1248), + [anon_sym_i64] = ACTIONS(1248), + [anon_sym_u128] = ACTIONS(1248), + [anon_sym_i128] = ACTIONS(1248), + [anon_sym_isize] = ACTIONS(1248), + [anon_sym_usize] = ACTIONS(1248), + [anon_sym_f32] = ACTIONS(1248), + [anon_sym_f64] = ACTIONS(1248), + [anon_sym_bool] = ACTIONS(1248), + [anon_sym_str] = ACTIONS(1248), + [anon_sym_char] = ACTIONS(1248), + [anon_sym_SQUOTE] = ACTIONS(1248), + [anon_sym_async] = ACTIONS(1248), + [anon_sym_break] = ACTIONS(1248), + [anon_sym_const] = ACTIONS(1248), + [anon_sym_continue] = ACTIONS(1248), + [anon_sym_default] = ACTIONS(1248), + [anon_sym_enum] = ACTIONS(1248), + [anon_sym_fn] = ACTIONS(1248), + [anon_sym_for] = ACTIONS(1248), + [anon_sym_if] = ACTIONS(1248), + [anon_sym_impl] = ACTIONS(1248), + [anon_sym_let] = ACTIONS(1248), + [anon_sym_loop] = ACTIONS(1248), + [anon_sym_match] = ACTIONS(1248), + [anon_sym_mod] = ACTIONS(1248), + [anon_sym_pub] = ACTIONS(1248), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_struct] = ACTIONS(1248), + [anon_sym_trait] = ACTIONS(1248), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_union] = ACTIONS(1248), + [anon_sym_unsafe] = ACTIONS(1248), + [anon_sym_use] = ACTIONS(1248), + [anon_sym_while] = ACTIONS(1248), + [anon_sym_POUND] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1248), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_COLON_COLON] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1248), + [sym_integer_literal] = ACTIONS(1246), + [aux_sym_string_literal_token1] = ACTIONS(1246), + [sym_char_literal] = ACTIONS(1246), + [anon_sym_true] = ACTIONS(1248), + [anon_sym_false] = ACTIONS(1248), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1248), + [sym_super] = ACTIONS(1248), + [sym_crate] = ACTIONS(1248), + [sym_metavariable] = ACTIONS(1246), + [sym_raw_string_literal] = ACTIONS(1246), + [sym_float_literal] = ACTIONS(1246), [sym_block_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1233), - [sym_identifier] = ACTIONS(1235), - [anon_sym_SEMI] = ACTIONS(1233), - [anon_sym_macro_rules_BANG] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_STAR] = ACTIONS(1233), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u128] = ACTIONS(1235), - [anon_sym_i128] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_str] = ACTIONS(1235), - [anon_sym_char] = ACTIONS(1235), - [anon_sym_SQUOTE] = ACTIONS(1235), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_break] = ACTIONS(1235), - [anon_sym_const] = ACTIONS(1235), - [anon_sym_continue] = ACTIONS(1235), - [anon_sym_default] = ACTIONS(1235), - [anon_sym_enum] = ACTIONS(1235), - [anon_sym_fn] = ACTIONS(1235), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_impl] = ACTIONS(1235), - [anon_sym_let] = ACTIONS(1235), - [anon_sym_loop] = ACTIONS(1235), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_mod] = ACTIONS(1235), - [anon_sym_pub] = ACTIONS(1235), - [anon_sym_return] = ACTIONS(1235), - [anon_sym_static] = ACTIONS(1235), - [anon_sym_struct] = ACTIONS(1235), - [anon_sym_trait] = ACTIONS(1235), - [anon_sym_type] = ACTIONS(1235), - [anon_sym_union] = ACTIONS(1235), - [anon_sym_unsafe] = ACTIONS(1235), - [anon_sym_use] = ACTIONS(1235), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_POUND] = ACTIONS(1233), - [anon_sym_BANG] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1233), - [anon_sym_COLON_COLON] = ACTIONS(1233), - [anon_sym_AMP] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1233), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_PIPE] = ACTIONS(1233), - [anon_sym_move] = ACTIONS(1235), - [sym_integer_literal] = ACTIONS(1233), - [aux_sym_string_literal_token1] = ACTIONS(1233), - [sym_char_literal] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1235), - [anon_sym_false] = ACTIONS(1235), + [ts_builtin_sym_end] = ACTIONS(1250), + [sym_identifier] = ACTIONS(1252), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_macro_rules_BANG] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(1250), + [anon_sym_RBRACE] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1250), + [anon_sym_STAR] = ACTIONS(1250), + [anon_sym_u8] = ACTIONS(1252), + [anon_sym_i8] = ACTIONS(1252), + [anon_sym_u16] = ACTIONS(1252), + [anon_sym_i16] = ACTIONS(1252), + [anon_sym_u32] = ACTIONS(1252), + [anon_sym_i32] = ACTIONS(1252), + [anon_sym_u64] = ACTIONS(1252), + [anon_sym_i64] = ACTIONS(1252), + [anon_sym_u128] = ACTIONS(1252), + [anon_sym_i128] = ACTIONS(1252), + [anon_sym_isize] = ACTIONS(1252), + [anon_sym_usize] = ACTIONS(1252), + [anon_sym_f32] = ACTIONS(1252), + [anon_sym_f64] = ACTIONS(1252), + [anon_sym_bool] = ACTIONS(1252), + [anon_sym_str] = ACTIONS(1252), + [anon_sym_char] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1252), + [anon_sym_async] = ACTIONS(1252), + [anon_sym_break] = ACTIONS(1252), + [anon_sym_const] = ACTIONS(1252), + [anon_sym_continue] = ACTIONS(1252), + [anon_sym_default] = ACTIONS(1252), + [anon_sym_enum] = ACTIONS(1252), + [anon_sym_fn] = ACTIONS(1252), + [anon_sym_for] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1252), + [anon_sym_impl] = ACTIONS(1252), + [anon_sym_let] = ACTIONS(1252), + [anon_sym_loop] = ACTIONS(1252), + [anon_sym_match] = ACTIONS(1252), + [anon_sym_mod] = ACTIONS(1252), + [anon_sym_pub] = ACTIONS(1252), + [anon_sym_return] = ACTIONS(1252), + [anon_sym_static] = ACTIONS(1252), + [anon_sym_struct] = ACTIONS(1252), + [anon_sym_trait] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1252), + [anon_sym_union] = ACTIONS(1252), + [anon_sym_unsafe] = ACTIONS(1252), + [anon_sym_use] = ACTIONS(1252), + [anon_sym_while] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1250), + [anon_sym_BANG] = ACTIONS(1250), + [anon_sym_extern] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_COLON_COLON] = ACTIONS(1250), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_DOT_DOT] = ACTIONS(1250), + [anon_sym_DASH] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_move] = ACTIONS(1252), + [sym_integer_literal] = ACTIONS(1250), + [aux_sym_string_literal_token1] = ACTIONS(1250), + [sym_char_literal] = ACTIONS(1250), + [anon_sym_true] = ACTIONS(1252), + [anon_sym_false] = ACTIONS(1252), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1235), - [sym_super] = ACTIONS(1235), - [sym_crate] = ACTIONS(1235), - [sym_metavariable] = ACTIONS(1233), - [sym_raw_string_literal] = ACTIONS(1233), - [sym_float_literal] = ACTIONS(1233), + [sym_self] = ACTIONS(1252), + [sym_super] = ACTIONS(1252), + [sym_crate] = ACTIONS(1252), + [sym_metavariable] = ACTIONS(1250), + [sym_raw_string_literal] = ACTIONS(1250), + [sym_float_literal] = ACTIONS(1250), [sym_block_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1237), - [sym_identifier] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_macro_rules_BANG] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(1237), - [anon_sym_RBRACE] = ACTIONS(1237), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_STAR] = ACTIONS(1237), - [anon_sym_u8] = ACTIONS(1239), - [anon_sym_i8] = ACTIONS(1239), - [anon_sym_u16] = ACTIONS(1239), - [anon_sym_i16] = ACTIONS(1239), - [anon_sym_u32] = ACTIONS(1239), - [anon_sym_i32] = ACTIONS(1239), - [anon_sym_u64] = ACTIONS(1239), - [anon_sym_i64] = ACTIONS(1239), - [anon_sym_u128] = ACTIONS(1239), - [anon_sym_i128] = ACTIONS(1239), - [anon_sym_isize] = ACTIONS(1239), - [anon_sym_usize] = ACTIONS(1239), - [anon_sym_f32] = ACTIONS(1239), - [anon_sym_f64] = ACTIONS(1239), - [anon_sym_bool] = ACTIONS(1239), - [anon_sym_str] = ACTIONS(1239), - [anon_sym_char] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1239), - [anon_sym_async] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_default] = ACTIONS(1239), - [anon_sym_enum] = ACTIONS(1239), - [anon_sym_fn] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_impl] = ACTIONS(1239), - [anon_sym_let] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_mod] = ACTIONS(1239), - [anon_sym_pub] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_static] = ACTIONS(1239), - [anon_sym_struct] = ACTIONS(1239), - [anon_sym_trait] = ACTIONS(1239), - [anon_sym_type] = ACTIONS(1239), - [anon_sym_union] = ACTIONS(1239), - [anon_sym_unsafe] = ACTIONS(1239), - [anon_sym_use] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1237), - [anon_sym_BANG] = ACTIONS(1237), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_COLON_COLON] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - [anon_sym_DOT_DOT] = ACTIONS(1237), - [anon_sym_DASH] = ACTIONS(1237), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_move] = ACTIONS(1239), - [sym_integer_literal] = ACTIONS(1237), - [aux_sym_string_literal_token1] = ACTIONS(1237), - [sym_char_literal] = ACTIONS(1237), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), + [ts_builtin_sym_end] = ACTIONS(1254), + [sym_identifier] = ACTIONS(1256), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_macro_rules_BANG] = ACTIONS(1254), + [anon_sym_LPAREN] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1254), + [anon_sym_RBRACE] = ACTIONS(1254), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_u8] = ACTIONS(1256), + [anon_sym_i8] = ACTIONS(1256), + [anon_sym_u16] = ACTIONS(1256), + [anon_sym_i16] = ACTIONS(1256), + [anon_sym_u32] = ACTIONS(1256), + [anon_sym_i32] = ACTIONS(1256), + [anon_sym_u64] = ACTIONS(1256), + [anon_sym_i64] = ACTIONS(1256), + [anon_sym_u128] = ACTIONS(1256), + [anon_sym_i128] = ACTIONS(1256), + [anon_sym_isize] = ACTIONS(1256), + [anon_sym_usize] = ACTIONS(1256), + [anon_sym_f32] = ACTIONS(1256), + [anon_sym_f64] = ACTIONS(1256), + [anon_sym_bool] = ACTIONS(1256), + [anon_sym_str] = ACTIONS(1256), + [anon_sym_char] = ACTIONS(1256), + [anon_sym_SQUOTE] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1256), + [anon_sym_break] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1256), + [anon_sym_continue] = ACTIONS(1256), + [anon_sym_default] = ACTIONS(1256), + [anon_sym_enum] = ACTIONS(1256), + [anon_sym_fn] = ACTIONS(1256), + [anon_sym_for] = ACTIONS(1256), + [anon_sym_if] = ACTIONS(1256), + [anon_sym_impl] = ACTIONS(1256), + [anon_sym_let] = ACTIONS(1256), + [anon_sym_loop] = ACTIONS(1256), + [anon_sym_match] = ACTIONS(1256), + [anon_sym_mod] = ACTIONS(1256), + [anon_sym_pub] = ACTIONS(1256), + [anon_sym_return] = ACTIONS(1256), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_struct] = ACTIONS(1256), + [anon_sym_trait] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_union] = ACTIONS(1256), + [anon_sym_unsafe] = ACTIONS(1256), + [anon_sym_use] = ACTIONS(1256), + [anon_sym_while] = ACTIONS(1256), + [anon_sym_POUND] = ACTIONS(1254), + [anon_sym_BANG] = ACTIONS(1254), + [anon_sym_extern] = ACTIONS(1256), + [anon_sym_LT] = ACTIONS(1254), + [anon_sym_COLON_COLON] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_DOT_DOT] = ACTIONS(1254), + [anon_sym_DASH] = ACTIONS(1254), + [anon_sym_PIPE] = ACTIONS(1254), + [anon_sym_move] = ACTIONS(1256), + [sym_integer_literal] = ACTIONS(1254), + [aux_sym_string_literal_token1] = ACTIONS(1254), + [sym_char_literal] = ACTIONS(1254), + [anon_sym_true] = ACTIONS(1256), + [anon_sym_false] = ACTIONS(1256), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1239), - [sym_super] = ACTIONS(1239), - [sym_crate] = ACTIONS(1239), - [sym_metavariable] = ACTIONS(1237), - [sym_raw_string_literal] = ACTIONS(1237), - [sym_float_literal] = ACTIONS(1237), + [sym_self] = ACTIONS(1256), + [sym_super] = ACTIONS(1256), + [sym_crate] = ACTIONS(1256), + [sym_metavariable] = ACTIONS(1254), + [sym_raw_string_literal] = ACTIONS(1254), + [sym_float_literal] = ACTIONS(1254), [sym_block_comment] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1241), - [sym_identifier] = ACTIONS(1243), - [anon_sym_SEMI] = ACTIONS(1241), - [anon_sym_macro_rules_BANG] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1241), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_LBRACK] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_u8] = ACTIONS(1243), - [anon_sym_i8] = ACTIONS(1243), - [anon_sym_u16] = ACTIONS(1243), - [anon_sym_i16] = ACTIONS(1243), - [anon_sym_u32] = ACTIONS(1243), - [anon_sym_i32] = ACTIONS(1243), - [anon_sym_u64] = ACTIONS(1243), - [anon_sym_i64] = ACTIONS(1243), - [anon_sym_u128] = ACTIONS(1243), - [anon_sym_i128] = ACTIONS(1243), - [anon_sym_isize] = ACTIONS(1243), - [anon_sym_usize] = ACTIONS(1243), - [anon_sym_f32] = ACTIONS(1243), - [anon_sym_f64] = ACTIONS(1243), - [anon_sym_bool] = ACTIONS(1243), - [anon_sym_str] = ACTIONS(1243), - [anon_sym_char] = ACTIONS(1243), - [anon_sym_SQUOTE] = ACTIONS(1243), - [anon_sym_async] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1243), - [anon_sym_const] = ACTIONS(1243), - [anon_sym_continue] = ACTIONS(1243), - [anon_sym_default] = ACTIONS(1243), - [anon_sym_enum] = ACTIONS(1243), - [anon_sym_fn] = ACTIONS(1243), - [anon_sym_for] = ACTIONS(1243), - [anon_sym_if] = ACTIONS(1243), - [anon_sym_impl] = ACTIONS(1243), - [anon_sym_let] = ACTIONS(1243), - [anon_sym_loop] = ACTIONS(1243), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_mod] = ACTIONS(1243), - [anon_sym_pub] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_static] = ACTIONS(1243), - [anon_sym_struct] = ACTIONS(1243), - [anon_sym_trait] = ACTIONS(1243), - [anon_sym_type] = ACTIONS(1243), - [anon_sym_union] = ACTIONS(1243), - [anon_sym_unsafe] = ACTIONS(1243), - [anon_sym_use] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1243), - [anon_sym_POUND] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_move] = ACTIONS(1243), - [sym_integer_literal] = ACTIONS(1241), - [aux_sym_string_literal_token1] = ACTIONS(1241), - [sym_char_literal] = ACTIONS(1241), - [anon_sym_true] = ACTIONS(1243), - [anon_sym_false] = ACTIONS(1243), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1243), - [sym_super] = ACTIONS(1243), - [sym_crate] = ACTIONS(1243), - [sym_metavariable] = ACTIONS(1241), - [sym_raw_string_literal] = ACTIONS(1241), - [sym_float_literal] = ACTIONS(1241), + [sym__token_pattern] = STATE(302), + [sym_token_tree_pattern] = STATE(302), + [sym_token_binding_pattern] = STATE(302), + [sym_token_repetition_pattern] = STATE(302), + [sym__literal] = STATE(302), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(1258), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1260), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1258), + [anon_sym_i8] = ACTIONS(1258), + [anon_sym_u16] = ACTIONS(1258), + [anon_sym_i16] = ACTIONS(1258), + [anon_sym_u32] = ACTIONS(1258), + [anon_sym_i32] = ACTIONS(1258), + [anon_sym_u64] = ACTIONS(1258), + [anon_sym_i64] = ACTIONS(1258), + [anon_sym_u128] = ACTIONS(1258), + [anon_sym_i128] = ACTIONS(1258), + [anon_sym_isize] = ACTIONS(1258), + [anon_sym_usize] = ACTIONS(1258), + [anon_sym_f32] = ACTIONS(1258), + [anon_sym_f64] = ACTIONS(1258), + [anon_sym_bool] = ACTIONS(1258), + [anon_sym_str] = ACTIONS(1258), + [anon_sym_char] = ACTIONS(1258), + [aux_sym__non_special_token_token1] = ACTIONS(1258), + [anon_sym_SQUOTE] = ACTIONS(1258), + [anon_sym_as] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(1258), + [anon_sym_await] = ACTIONS(1258), + [anon_sym_break] = ACTIONS(1258), + [anon_sym_const] = ACTIONS(1258), + [anon_sym_continue] = ACTIONS(1258), + [anon_sym_default] = ACTIONS(1258), + [anon_sym_enum] = ACTIONS(1258), + [anon_sym_fn] = ACTIONS(1258), + [anon_sym_for] = ACTIONS(1258), + [anon_sym_if] = ACTIONS(1258), + [anon_sym_impl] = ACTIONS(1258), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_loop] = ACTIONS(1258), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_mod] = ACTIONS(1258), + [anon_sym_pub] = ACTIONS(1258), + [anon_sym_return] = ACTIONS(1258), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_struct] = ACTIONS(1258), + [anon_sym_trait] = ACTIONS(1258), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_union] = ACTIONS(1258), + [anon_sym_unsafe] = ACTIONS(1258), + [anon_sym_use] = ACTIONS(1258), + [anon_sym_where] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1258), + [sym_mutable_specifier] = ACTIONS(1258), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1258), + [sym_super] = ACTIONS(1258), + [sym_crate] = ACTIONS(1258), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_macro_rules_BANG] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u128] = ACTIONS(1247), - [anon_sym_i128] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_str] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1247), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_impl] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_pub] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_trait] = ACTIONS(1247), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_unsafe] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_move] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(1245), - [aux_sym_string_literal_token1] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_crate] = ACTIONS(1247), - [sym_metavariable] = ACTIONS(1245), - [sym_raw_string_literal] = ACTIONS(1245), - [sym_float_literal] = ACTIONS(1245), + [sym__token_pattern] = STATE(303), + [sym_token_tree_pattern] = STATE(303), + [sym_token_binding_pattern] = STATE(303), + [sym_token_repetition_pattern] = STATE(303), + [sym__literal] = STATE(303), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1262), + [anon_sym_i8] = ACTIONS(1262), + [anon_sym_u16] = ACTIONS(1262), + [anon_sym_i16] = ACTIONS(1262), + [anon_sym_u32] = ACTIONS(1262), + [anon_sym_i32] = ACTIONS(1262), + [anon_sym_u64] = ACTIONS(1262), + [anon_sym_i64] = ACTIONS(1262), + [anon_sym_u128] = ACTIONS(1262), + [anon_sym_i128] = ACTIONS(1262), + [anon_sym_isize] = ACTIONS(1262), + [anon_sym_usize] = ACTIONS(1262), + [anon_sym_f32] = ACTIONS(1262), + [anon_sym_f64] = ACTIONS(1262), + [anon_sym_bool] = ACTIONS(1262), + [anon_sym_str] = ACTIONS(1262), + [anon_sym_char] = ACTIONS(1262), + [aux_sym__non_special_token_token1] = ACTIONS(1262), + [anon_sym_SQUOTE] = ACTIONS(1262), + [anon_sym_as] = ACTIONS(1262), + [anon_sym_async] = ACTIONS(1262), + [anon_sym_await] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_default] = ACTIONS(1262), + [anon_sym_enum] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_impl] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_mod] = ACTIONS(1262), + [anon_sym_pub] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1262), + [anon_sym_struct] = ACTIONS(1262), + [anon_sym_trait] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1262), + [anon_sym_union] = ACTIONS(1262), + [anon_sym_unsafe] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_where] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [sym_mutable_specifier] = ACTIONS(1262), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1262), + [sym_super] = ACTIONS(1262), + [sym_crate] = ACTIONS(1262), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_macro_rules_BANG] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u128] = ACTIONS(1251), - [anon_sym_i128] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_str] = ACTIONS(1251), - [anon_sym_char] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_fn] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_impl] = ACTIONS(1251), - [anon_sym_let] = ACTIONS(1251), - [anon_sym_loop] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_mod] = ACTIONS(1251), - [anon_sym_pub] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_trait] = ACTIONS(1251), - [anon_sym_type] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1251), - [anon_sym_use] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_move] = ACTIONS(1251), - [sym_integer_literal] = ACTIONS(1249), - [aux_sym_string_literal_token1] = ACTIONS(1249), - [sym_char_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_crate] = ACTIONS(1251), - [sym_metavariable] = ACTIONS(1249), - [sym_raw_string_literal] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1249), + [sym__token_pattern] = STATE(304), + [sym_token_tree_pattern] = STATE(304), + [sym_token_binding_pattern] = STATE(304), + [sym_token_repetition_pattern] = STATE(304), + [sym__literal] = STATE(304), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1260), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1264), + [anon_sym_i8] = ACTIONS(1264), + [anon_sym_u16] = ACTIONS(1264), + [anon_sym_i16] = ACTIONS(1264), + [anon_sym_u32] = ACTIONS(1264), + [anon_sym_i32] = ACTIONS(1264), + [anon_sym_u64] = ACTIONS(1264), + [anon_sym_i64] = ACTIONS(1264), + [anon_sym_u128] = ACTIONS(1264), + [anon_sym_i128] = ACTIONS(1264), + [anon_sym_isize] = ACTIONS(1264), + [anon_sym_usize] = ACTIONS(1264), + [anon_sym_f32] = ACTIONS(1264), + [anon_sym_f64] = ACTIONS(1264), + [anon_sym_bool] = ACTIONS(1264), + [anon_sym_str] = ACTIONS(1264), + [anon_sym_char] = ACTIONS(1264), + [aux_sym__non_special_token_token1] = ACTIONS(1264), + [anon_sym_SQUOTE] = ACTIONS(1264), + [anon_sym_as] = ACTIONS(1264), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_break] = ACTIONS(1264), + [anon_sym_const] = ACTIONS(1264), + [anon_sym_continue] = ACTIONS(1264), + [anon_sym_default] = ACTIONS(1264), + [anon_sym_enum] = ACTIONS(1264), + [anon_sym_fn] = ACTIONS(1264), + [anon_sym_for] = ACTIONS(1264), + [anon_sym_if] = ACTIONS(1264), + [anon_sym_impl] = ACTIONS(1264), + [anon_sym_let] = ACTIONS(1264), + [anon_sym_loop] = ACTIONS(1264), + [anon_sym_match] = ACTIONS(1264), + [anon_sym_mod] = ACTIONS(1264), + [anon_sym_pub] = ACTIONS(1264), + [anon_sym_return] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1264), + [anon_sym_struct] = ACTIONS(1264), + [anon_sym_trait] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1264), + [anon_sym_union] = ACTIONS(1264), + [anon_sym_unsafe] = ACTIONS(1264), + [anon_sym_use] = ACTIONS(1264), + [anon_sym_where] = ACTIONS(1264), + [anon_sym_while] = ACTIONS(1264), + [sym_mutable_specifier] = ACTIONS(1264), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1264), + [sym_super] = ACTIONS(1264), + [sym_crate] = ACTIONS(1264), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_macro_rules_BANG] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_u8] = ACTIONS(1255), - [anon_sym_i8] = ACTIONS(1255), - [anon_sym_u16] = ACTIONS(1255), - [anon_sym_i16] = ACTIONS(1255), - [anon_sym_u32] = ACTIONS(1255), - [anon_sym_i32] = ACTIONS(1255), - [anon_sym_u64] = ACTIONS(1255), - [anon_sym_i64] = ACTIONS(1255), - [anon_sym_u128] = ACTIONS(1255), - [anon_sym_i128] = ACTIONS(1255), - [anon_sym_isize] = ACTIONS(1255), - [anon_sym_usize] = ACTIONS(1255), - [anon_sym_f32] = ACTIONS(1255), - [anon_sym_f64] = ACTIONS(1255), - [anon_sym_bool] = ACTIONS(1255), - [anon_sym_str] = ACTIONS(1255), - [anon_sym_char] = ACTIONS(1255), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_impl] = ACTIONS(1255), - [anon_sym_let] = ACTIONS(1255), - [anon_sym_loop] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_mod] = ACTIONS(1255), - [anon_sym_pub] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_trait] = ACTIONS(1255), - [anon_sym_type] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_unsafe] = ACTIONS(1255), - [anon_sym_use] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_move] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1253), - [aux_sym_string_literal_token1] = ACTIONS(1253), - [sym_char_literal] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), + [ts_builtin_sym_end] = ACTIONS(1266), + [sym_identifier] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1266), + [anon_sym_macro_rules_BANG] = ACTIONS(1266), + [anon_sym_LPAREN] = ACTIONS(1266), + [anon_sym_LBRACE] = ACTIONS(1266), + [anon_sym_RBRACE] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_STAR] = ACTIONS(1266), + [anon_sym_u8] = ACTIONS(1268), + [anon_sym_i8] = ACTIONS(1268), + [anon_sym_u16] = ACTIONS(1268), + [anon_sym_i16] = ACTIONS(1268), + [anon_sym_u32] = ACTIONS(1268), + [anon_sym_i32] = ACTIONS(1268), + [anon_sym_u64] = ACTIONS(1268), + [anon_sym_i64] = ACTIONS(1268), + [anon_sym_u128] = ACTIONS(1268), + [anon_sym_i128] = ACTIONS(1268), + [anon_sym_isize] = ACTIONS(1268), + [anon_sym_usize] = ACTIONS(1268), + [anon_sym_f32] = ACTIONS(1268), + [anon_sym_f64] = ACTIONS(1268), + [anon_sym_bool] = ACTIONS(1268), + [anon_sym_str] = ACTIONS(1268), + [anon_sym_char] = ACTIONS(1268), + [anon_sym_SQUOTE] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1268), + [anon_sym_break] = ACTIONS(1268), + [anon_sym_const] = ACTIONS(1268), + [anon_sym_continue] = ACTIONS(1268), + [anon_sym_default] = ACTIONS(1268), + [anon_sym_enum] = ACTIONS(1268), + [anon_sym_fn] = ACTIONS(1268), + [anon_sym_for] = ACTIONS(1268), + [anon_sym_if] = ACTIONS(1268), + [anon_sym_impl] = ACTIONS(1268), + [anon_sym_let] = ACTIONS(1268), + [anon_sym_loop] = ACTIONS(1268), + [anon_sym_match] = ACTIONS(1268), + [anon_sym_mod] = ACTIONS(1268), + [anon_sym_pub] = ACTIONS(1268), + [anon_sym_return] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1268), + [anon_sym_struct] = ACTIONS(1268), + [anon_sym_trait] = ACTIONS(1268), + [anon_sym_type] = ACTIONS(1268), + [anon_sym_union] = ACTIONS(1268), + [anon_sym_unsafe] = ACTIONS(1268), + [anon_sym_use] = ACTIONS(1268), + [anon_sym_while] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(1266), + [anon_sym_BANG] = ACTIONS(1266), + [anon_sym_extern] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(1266), + [anon_sym_COLON_COLON] = ACTIONS(1266), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_DOT_DOT] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1266), + [anon_sym_move] = ACTIONS(1268), + [sym_integer_literal] = ACTIONS(1266), + [aux_sym_string_literal_token1] = ACTIONS(1266), + [sym_char_literal] = ACTIONS(1266), + [anon_sym_true] = ACTIONS(1268), + [anon_sym_false] = ACTIONS(1268), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_crate] = ACTIONS(1255), - [sym_metavariable] = ACTIONS(1253), - [sym_raw_string_literal] = ACTIONS(1253), - [sym_float_literal] = ACTIONS(1253), + [sym_self] = ACTIONS(1268), + [sym_super] = ACTIONS(1268), + [sym_crate] = ACTIONS(1268), + [sym_metavariable] = ACTIONS(1266), + [sym_raw_string_literal] = ACTIONS(1266), + [sym_float_literal] = ACTIONS(1266), [sym_block_comment] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_macro_rules_BANG] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_move] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym_raw_string_literal] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), + [sym__token_pattern] = STATE(425), + [sym_token_tree_pattern] = STATE(425), + [sym_token_binding_pattern] = STATE(425), + [sym_token_repetition_pattern] = STATE(425), + [sym__literal] = STATE(425), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(425), + [sym_identifier] = ACTIONS(1270), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [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), + [aux_sym__non_special_token_token1] = ACTIONS(1270), + [anon_sym_SQUOTE] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1270), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_await] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_enum] = ACTIONS(1270), + [anon_sym_fn] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_impl] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_mod] = ACTIONS(1270), + [anon_sym_pub] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_struct] = ACTIONS(1270), + [anon_sym_trait] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_union] = ACTIONS(1270), + [anon_sym_unsafe] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [sym_mutable_specifier] = ACTIONS(1270), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1270), + [sym_super] = ACTIONS(1270), + [sym_crate] = ACTIONS(1270), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_macro_rules_BANG] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_move] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), + [ts_builtin_sym_end] = ACTIONS(1274), + [sym_identifier] = ACTIONS(1276), + [anon_sym_SEMI] = ACTIONS(1274), + [anon_sym_macro_rules_BANG] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_RBRACE] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1274), + [anon_sym_STAR] = ACTIONS(1274), + [anon_sym_u8] = ACTIONS(1276), + [anon_sym_i8] = ACTIONS(1276), + [anon_sym_u16] = ACTIONS(1276), + [anon_sym_i16] = ACTIONS(1276), + [anon_sym_u32] = ACTIONS(1276), + [anon_sym_i32] = ACTIONS(1276), + [anon_sym_u64] = ACTIONS(1276), + [anon_sym_i64] = ACTIONS(1276), + [anon_sym_u128] = ACTIONS(1276), + [anon_sym_i128] = ACTIONS(1276), + [anon_sym_isize] = ACTIONS(1276), + [anon_sym_usize] = ACTIONS(1276), + [anon_sym_f32] = ACTIONS(1276), + [anon_sym_f64] = ACTIONS(1276), + [anon_sym_bool] = ACTIONS(1276), + [anon_sym_str] = ACTIONS(1276), + [anon_sym_char] = ACTIONS(1276), + [anon_sym_SQUOTE] = ACTIONS(1276), + [anon_sym_async] = ACTIONS(1276), + [anon_sym_break] = ACTIONS(1276), + [anon_sym_const] = ACTIONS(1276), + [anon_sym_continue] = ACTIONS(1276), + [anon_sym_default] = ACTIONS(1276), + [anon_sym_enum] = ACTIONS(1276), + [anon_sym_fn] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1276), + [anon_sym_if] = ACTIONS(1276), + [anon_sym_impl] = ACTIONS(1276), + [anon_sym_let] = ACTIONS(1276), + [anon_sym_loop] = ACTIONS(1276), + [anon_sym_match] = ACTIONS(1276), + [anon_sym_mod] = ACTIONS(1276), + [anon_sym_pub] = ACTIONS(1276), + [anon_sym_return] = ACTIONS(1276), + [anon_sym_static] = ACTIONS(1276), + [anon_sym_struct] = ACTIONS(1276), + [anon_sym_trait] = ACTIONS(1276), + [anon_sym_type] = ACTIONS(1276), + [anon_sym_union] = ACTIONS(1276), + [anon_sym_unsafe] = ACTIONS(1276), + [anon_sym_use] = ACTIONS(1276), + [anon_sym_while] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(1274), + [anon_sym_BANG] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1276), + [anon_sym_LT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1274), + [anon_sym_AMP] = ACTIONS(1274), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_PIPE] = ACTIONS(1274), + [anon_sym_move] = ACTIONS(1276), + [sym_integer_literal] = ACTIONS(1274), + [aux_sym_string_literal_token1] = ACTIONS(1274), + [sym_char_literal] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1276), + [anon_sym_false] = ACTIONS(1276), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym_raw_string_literal] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), + [sym_self] = ACTIONS(1276), + [sym_super] = ACTIONS(1276), + [sym_crate] = ACTIONS(1276), + [sym_metavariable] = ACTIONS(1274), + [sym_raw_string_literal] = ACTIONS(1274), + [sym_float_literal] = ACTIONS(1274), [sym_block_comment] = ACTIONS(3), }, [297] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1278), + [sym_identifier] = ACTIONS(1280), + [anon_sym_SEMI] = ACTIONS(1278), + [anon_sym_macro_rules_BANG] = ACTIONS(1278), + [anon_sym_LPAREN] = ACTIONS(1278), + [anon_sym_LBRACE] = ACTIONS(1278), + [anon_sym_RBRACE] = ACTIONS(1278), + [anon_sym_LBRACK] = ACTIONS(1278), + [anon_sym_STAR] = ACTIONS(1278), + [anon_sym_u8] = ACTIONS(1280), + [anon_sym_i8] = ACTIONS(1280), + [anon_sym_u16] = ACTIONS(1280), + [anon_sym_i16] = ACTIONS(1280), + [anon_sym_u32] = ACTIONS(1280), + [anon_sym_i32] = ACTIONS(1280), + [anon_sym_u64] = ACTIONS(1280), + [anon_sym_i64] = ACTIONS(1280), + [anon_sym_u128] = ACTIONS(1280), + [anon_sym_i128] = ACTIONS(1280), + [anon_sym_isize] = ACTIONS(1280), + [anon_sym_usize] = ACTIONS(1280), + [anon_sym_f32] = ACTIONS(1280), + [anon_sym_f64] = ACTIONS(1280), + [anon_sym_bool] = ACTIONS(1280), + [anon_sym_str] = ACTIONS(1280), + [anon_sym_char] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1280), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_break] = ACTIONS(1280), + [anon_sym_const] = ACTIONS(1280), + [anon_sym_continue] = ACTIONS(1280), + [anon_sym_default] = ACTIONS(1280), + [anon_sym_enum] = ACTIONS(1280), + [anon_sym_fn] = ACTIONS(1280), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_if] = ACTIONS(1280), + [anon_sym_impl] = ACTIONS(1280), + [anon_sym_let] = ACTIONS(1280), + [anon_sym_loop] = ACTIONS(1280), + [anon_sym_match] = ACTIONS(1280), + [anon_sym_mod] = ACTIONS(1280), + [anon_sym_pub] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1280), + [anon_sym_static] = ACTIONS(1280), + [anon_sym_struct] = ACTIONS(1280), + [anon_sym_trait] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1280), + [anon_sym_union] = ACTIONS(1280), + [anon_sym_unsafe] = ACTIONS(1280), + [anon_sym_use] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1280), + [anon_sym_POUND] = ACTIONS(1278), + [anon_sym_BANG] = ACTIONS(1278), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym_LT] = ACTIONS(1278), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_AMP] = ACTIONS(1278), + [anon_sym_DOT_DOT] = ACTIONS(1278), + [anon_sym_DASH] = ACTIONS(1278), + [anon_sym_PIPE] = ACTIONS(1278), + [anon_sym_move] = ACTIONS(1280), + [sym_integer_literal] = ACTIONS(1278), + [aux_sym_string_literal_token1] = ACTIONS(1278), + [sym_char_literal] = ACTIONS(1278), + [anon_sym_true] = ACTIONS(1280), + [anon_sym_false] = ACTIONS(1280), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1280), + [sym_super] = ACTIONS(1280), + [sym_crate] = ACTIONS(1280), + [sym_metavariable] = ACTIONS(1278), + [sym_raw_string_literal] = ACTIONS(1278), + [sym_float_literal] = ACTIONS(1278), [sym_block_comment] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_macro_rules_BANG] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_loop] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_move] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), + [ts_builtin_sym_end] = ACTIONS(1282), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_macro_rules_BANG] = ACTIONS(1282), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_STAR] = ACTIONS(1282), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [anon_sym_POUND] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_extern] = ACTIONS(1284), + [anon_sym_LT] = ACTIONS(1282), + [anon_sym_COLON_COLON] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1282), + [anon_sym_move] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1282), + [aux_sym_string_literal_token1] = ACTIONS(1282), + [sym_char_literal] = ACTIONS(1282), + [anon_sym_true] = ACTIONS(1284), + [anon_sym_false] = ACTIONS(1284), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym_raw_string_literal] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_metavariable] = ACTIONS(1282), + [sym_raw_string_literal] = ACTIONS(1282), + [sym_float_literal] = ACTIONS(1282), [sym_block_comment] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_macro_rules_BANG] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_loop] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_move] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), + [ts_builtin_sym_end] = ACTIONS(1286), + [sym_identifier] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_macro_rules_BANG] = ACTIONS(1286), + [anon_sym_LPAREN] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_STAR] = ACTIONS(1286), + [anon_sym_u8] = ACTIONS(1288), + [anon_sym_i8] = ACTIONS(1288), + [anon_sym_u16] = ACTIONS(1288), + [anon_sym_i16] = ACTIONS(1288), + [anon_sym_u32] = ACTIONS(1288), + [anon_sym_i32] = ACTIONS(1288), + [anon_sym_u64] = ACTIONS(1288), + [anon_sym_i64] = ACTIONS(1288), + [anon_sym_u128] = ACTIONS(1288), + [anon_sym_i128] = ACTIONS(1288), + [anon_sym_isize] = ACTIONS(1288), + [anon_sym_usize] = ACTIONS(1288), + [anon_sym_f32] = ACTIONS(1288), + [anon_sym_f64] = ACTIONS(1288), + [anon_sym_bool] = ACTIONS(1288), + [anon_sym_str] = ACTIONS(1288), + [anon_sym_char] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_const] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_impl] = ACTIONS(1288), + [anon_sym_let] = ACTIONS(1288), + [anon_sym_loop] = ACTIONS(1288), + [anon_sym_match] = ACTIONS(1288), + [anon_sym_mod] = ACTIONS(1288), + [anon_sym_pub] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_static] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_trait] = ACTIONS(1288), + [anon_sym_type] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_unsafe] = ACTIONS(1288), + [anon_sym_use] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_POUND] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1286), + [anon_sym_extern] = ACTIONS(1288), + [anon_sym_LT] = ACTIONS(1286), + [anon_sym_COLON_COLON] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DASH] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1286), + [anon_sym_move] = ACTIONS(1288), + [sym_integer_literal] = ACTIONS(1286), + [aux_sym_string_literal_token1] = ACTIONS(1286), + [sym_char_literal] = ACTIONS(1286), + [anon_sym_true] = ACTIONS(1288), + [anon_sym_false] = ACTIONS(1288), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym_raw_string_literal] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), + [sym_self] = ACTIONS(1288), + [sym_super] = ACTIONS(1288), + [sym_crate] = ACTIONS(1288), + [sym_metavariable] = ACTIONS(1286), + [sym_raw_string_literal] = ACTIONS(1286), + [sym_float_literal] = ACTIONS(1286), [sym_block_comment] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_macro_rules_BANG] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_move] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), + [ts_builtin_sym_end] = ACTIONS(1290), + [sym_identifier] = ACTIONS(1292), + [anon_sym_SEMI] = ACTIONS(1290), + [anon_sym_macro_rules_BANG] = ACTIONS(1290), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_LBRACE] = ACTIONS(1290), + [anon_sym_RBRACE] = ACTIONS(1290), + [anon_sym_LBRACK] = ACTIONS(1290), + [anon_sym_STAR] = ACTIONS(1290), + [anon_sym_u8] = ACTIONS(1292), + [anon_sym_i8] = ACTIONS(1292), + [anon_sym_u16] = ACTIONS(1292), + [anon_sym_i16] = ACTIONS(1292), + [anon_sym_u32] = ACTIONS(1292), + [anon_sym_i32] = ACTIONS(1292), + [anon_sym_u64] = ACTIONS(1292), + [anon_sym_i64] = ACTIONS(1292), + [anon_sym_u128] = ACTIONS(1292), + [anon_sym_i128] = ACTIONS(1292), + [anon_sym_isize] = ACTIONS(1292), + [anon_sym_usize] = ACTIONS(1292), + [anon_sym_f32] = ACTIONS(1292), + [anon_sym_f64] = ACTIONS(1292), + [anon_sym_bool] = ACTIONS(1292), + [anon_sym_str] = ACTIONS(1292), + [anon_sym_char] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(1292), + [anon_sym_async] = ACTIONS(1292), + [anon_sym_break] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_continue] = ACTIONS(1292), + [anon_sym_default] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_fn] = ACTIONS(1292), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1292), + [anon_sym_let] = ACTIONS(1292), + [anon_sym_loop] = ACTIONS(1292), + [anon_sym_match] = ACTIONS(1292), + [anon_sym_mod] = ACTIONS(1292), + [anon_sym_pub] = ACTIONS(1292), + [anon_sym_return] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_trait] = ACTIONS(1292), + [anon_sym_type] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_unsafe] = ACTIONS(1292), + [anon_sym_use] = ACTIONS(1292), + [anon_sym_while] = ACTIONS(1292), + [anon_sym_POUND] = ACTIONS(1290), + [anon_sym_BANG] = ACTIONS(1290), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym_LT] = ACTIONS(1290), + [anon_sym_COLON_COLON] = ACTIONS(1290), + [anon_sym_AMP] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1290), + [anon_sym_DASH] = ACTIONS(1290), + [anon_sym_PIPE] = ACTIONS(1290), + [anon_sym_move] = ACTIONS(1292), + [sym_integer_literal] = ACTIONS(1290), + [aux_sym_string_literal_token1] = ACTIONS(1290), + [sym_char_literal] = ACTIONS(1290), + [anon_sym_true] = ACTIONS(1292), + [anon_sym_false] = ACTIONS(1292), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym_raw_string_literal] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), + [sym_self] = ACTIONS(1292), + [sym_super] = ACTIONS(1292), + [sym_crate] = ACTIONS(1292), + [sym_metavariable] = ACTIONS(1290), + [sym_raw_string_literal] = ACTIONS(1290), + [sym_float_literal] = ACTIONS(1290), [sym_block_comment] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1277), - [sym_identifier] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1277), - [anon_sym_macro_rules_BANG] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_LBRACE] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_SQUOTE] = ACTIONS(1279), - [anon_sym_async] = ACTIONS(1279), - [anon_sym_break] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_continue] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_enum] = ACTIONS(1279), - [anon_sym_fn] = ACTIONS(1279), - [anon_sym_for] = ACTIONS(1279), - [anon_sym_if] = ACTIONS(1279), - [anon_sym_impl] = ACTIONS(1279), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_loop] = ACTIONS(1279), - [anon_sym_match] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_pub] = ACTIONS(1279), - [anon_sym_return] = ACTIONS(1279), - [anon_sym_static] = ACTIONS(1279), - [anon_sym_struct] = ACTIONS(1279), - [anon_sym_trait] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_unsafe] = ACTIONS(1279), - [anon_sym_use] = ACTIONS(1279), - [anon_sym_while] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_extern] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1277), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_move] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1296), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_macro_rules_BANG] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_LBRACK] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_u8] = ACTIONS(1296), + [anon_sym_i8] = ACTIONS(1296), + [anon_sym_u16] = ACTIONS(1296), + [anon_sym_i16] = ACTIONS(1296), + [anon_sym_u32] = ACTIONS(1296), + [anon_sym_i32] = ACTIONS(1296), + [anon_sym_u64] = ACTIONS(1296), + [anon_sym_i64] = ACTIONS(1296), + [anon_sym_u128] = ACTIONS(1296), + [anon_sym_i128] = ACTIONS(1296), + [anon_sym_isize] = ACTIONS(1296), + [anon_sym_usize] = ACTIONS(1296), + [anon_sym_f32] = ACTIONS(1296), + [anon_sym_f64] = ACTIONS(1296), + [anon_sym_bool] = ACTIONS(1296), + [anon_sym_str] = ACTIONS(1296), + [anon_sym_char] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [anon_sym_async] = ACTIONS(1296), + [anon_sym_break] = ACTIONS(1296), + [anon_sym_const] = ACTIONS(1296), + [anon_sym_continue] = ACTIONS(1296), + [anon_sym_default] = ACTIONS(1296), + [anon_sym_enum] = ACTIONS(1296), + [anon_sym_fn] = ACTIONS(1296), + [anon_sym_for] = ACTIONS(1296), + [anon_sym_if] = ACTIONS(1296), + [anon_sym_impl] = ACTIONS(1296), + [anon_sym_let] = ACTIONS(1296), + [anon_sym_loop] = ACTIONS(1296), + [anon_sym_match] = ACTIONS(1296), + [anon_sym_mod] = ACTIONS(1296), + [anon_sym_pub] = ACTIONS(1296), + [anon_sym_return] = ACTIONS(1296), + [anon_sym_static] = ACTIONS(1296), + [anon_sym_struct] = ACTIONS(1296), + [anon_sym_trait] = ACTIONS(1296), + [anon_sym_type] = ACTIONS(1296), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1296), + [anon_sym_use] = ACTIONS(1296), + [anon_sym_while] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1296), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_COLON_COLON] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1296), + [sym_integer_literal] = ACTIONS(1294), + [aux_sym_string_literal_token1] = ACTIONS(1294), + [sym_char_literal] = ACTIONS(1294), + [anon_sym_true] = ACTIONS(1296), + [anon_sym_false] = ACTIONS(1296), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_crate] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1277), - [sym_raw_string_literal] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), + [sym_self] = ACTIONS(1296), + [sym_super] = ACTIONS(1296), + [sym_crate] = ACTIONS(1296), + [sym_metavariable] = ACTIONS(1294), + [sym_raw_string_literal] = ACTIONS(1294), + [sym_float_literal] = ACTIONS(1294), [sym_block_comment] = ACTIONS(3), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(1281), - [sym_identifier] = ACTIONS(1283), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_macro_rules_BANG] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_STAR] = ACTIONS(1281), - [anon_sym_u8] = ACTIONS(1283), - [anon_sym_i8] = ACTIONS(1283), - [anon_sym_u16] = ACTIONS(1283), - [anon_sym_i16] = ACTIONS(1283), - [anon_sym_u32] = ACTIONS(1283), - [anon_sym_i32] = ACTIONS(1283), - [anon_sym_u64] = ACTIONS(1283), - [anon_sym_i64] = ACTIONS(1283), - [anon_sym_u128] = ACTIONS(1283), - [anon_sym_i128] = ACTIONS(1283), - [anon_sym_isize] = ACTIONS(1283), - [anon_sym_usize] = ACTIONS(1283), - [anon_sym_f32] = ACTIONS(1283), - [anon_sym_f64] = ACTIONS(1283), - [anon_sym_bool] = ACTIONS(1283), - [anon_sym_str] = ACTIONS(1283), - [anon_sym_char] = ACTIONS(1283), - [anon_sym_SQUOTE] = ACTIONS(1283), - [anon_sym_async] = ACTIONS(1283), - [anon_sym_break] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_continue] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_enum] = ACTIONS(1283), - [anon_sym_fn] = ACTIONS(1283), - [anon_sym_for] = ACTIONS(1283), - [anon_sym_if] = ACTIONS(1283), - [anon_sym_impl] = ACTIONS(1283), - [anon_sym_let] = ACTIONS(1283), - [anon_sym_loop] = ACTIONS(1283), - [anon_sym_match] = ACTIONS(1283), - [anon_sym_mod] = ACTIONS(1283), - [anon_sym_pub] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1283), - [anon_sym_static] = ACTIONS(1283), - [anon_sym_struct] = ACTIONS(1283), - [anon_sym_trait] = ACTIONS(1283), - [anon_sym_type] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_unsafe] = ACTIONS(1283), - [anon_sym_use] = ACTIONS(1283), - [anon_sym_while] = ACTIONS(1283), - [anon_sym_POUND] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_extern] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1281), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1281), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DASH] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1281), - [anon_sym_move] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1281), - [aux_sym_string_literal_token1] = ACTIONS(1281), - [sym_char_literal] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(1283), - [anon_sym_false] = ACTIONS(1283), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1283), - [sym_super] = ACTIONS(1283), - [sym_crate] = ACTIONS(1283), - [sym_metavariable] = ACTIONS(1281), - [sym_raw_string_literal] = ACTIONS(1281), - [sym_float_literal] = ACTIONS(1281), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1285), - [sym_identifier] = ACTIONS(1287), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_macro_rules_BANG] = ACTIONS(1285), - [anon_sym_LPAREN] = ACTIONS(1285), - [anon_sym_LBRACE] = ACTIONS(1285), - [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1285), - [anon_sym_STAR] = ACTIONS(1285), - [anon_sym_u8] = ACTIONS(1287), - [anon_sym_i8] = ACTIONS(1287), - [anon_sym_u16] = ACTIONS(1287), - [anon_sym_i16] = ACTIONS(1287), - [anon_sym_u32] = ACTIONS(1287), - [anon_sym_i32] = ACTIONS(1287), - [anon_sym_u64] = ACTIONS(1287), - [anon_sym_i64] = ACTIONS(1287), - [anon_sym_u128] = ACTIONS(1287), - [anon_sym_i128] = ACTIONS(1287), - [anon_sym_isize] = ACTIONS(1287), - [anon_sym_usize] = ACTIONS(1287), - [anon_sym_f32] = ACTIONS(1287), - [anon_sym_f64] = ACTIONS(1287), - [anon_sym_bool] = ACTIONS(1287), - [anon_sym_str] = ACTIONS(1287), - [anon_sym_char] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_async] = ACTIONS(1287), - [anon_sym_break] = ACTIONS(1287), - [anon_sym_const] = ACTIONS(1287), - [anon_sym_continue] = ACTIONS(1287), - [anon_sym_default] = ACTIONS(1287), - [anon_sym_enum] = ACTIONS(1287), - [anon_sym_fn] = ACTIONS(1287), - [anon_sym_for] = ACTIONS(1287), - [anon_sym_if] = ACTIONS(1287), - [anon_sym_impl] = ACTIONS(1287), - [anon_sym_let] = ACTIONS(1287), - [anon_sym_loop] = ACTIONS(1287), - [anon_sym_match] = ACTIONS(1287), - [anon_sym_mod] = ACTIONS(1287), - [anon_sym_pub] = ACTIONS(1287), - [anon_sym_return] = ACTIONS(1287), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_struct] = ACTIONS(1287), - [anon_sym_trait] = ACTIONS(1287), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_union] = ACTIONS(1287), - [anon_sym_unsafe] = ACTIONS(1287), - [anon_sym_use] = ACTIONS(1287), - [anon_sym_while] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1285), - [anon_sym_BANG] = ACTIONS(1285), - [anon_sym_extern] = ACTIONS(1287), - [anon_sym_LT] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1285), - [anon_sym_AMP] = ACTIONS(1285), - [anon_sym_DOT_DOT] = ACTIONS(1285), - [anon_sym_DASH] = ACTIONS(1285), - [anon_sym_PIPE] = ACTIONS(1285), - [anon_sym_move] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [aux_sym_string_literal_token1] = ACTIONS(1285), - [sym_char_literal] = ACTIONS(1285), - [anon_sym_true] = ACTIONS(1287), - [anon_sym_false] = ACTIONS(1287), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1287), - [sym_super] = ACTIONS(1287), - [sym_crate] = ACTIONS(1287), - [sym_metavariable] = ACTIONS(1285), - [sym_raw_string_literal] = ACTIONS(1285), - [sym_float_literal] = ACTIONS(1285), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1289), - [sym_identifier] = ACTIONS(1291), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_macro_rules_BANG] = ACTIONS(1289), - [anon_sym_LPAREN] = ACTIONS(1289), - [anon_sym_LBRACE] = ACTIONS(1289), - [anon_sym_RBRACE] = ACTIONS(1289), - [anon_sym_LBRACK] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_u8] = ACTIONS(1291), - [anon_sym_i8] = ACTIONS(1291), - [anon_sym_u16] = ACTIONS(1291), - [anon_sym_i16] = ACTIONS(1291), - [anon_sym_u32] = ACTIONS(1291), - [anon_sym_i32] = ACTIONS(1291), - [anon_sym_u64] = ACTIONS(1291), - [anon_sym_i64] = ACTIONS(1291), - [anon_sym_u128] = ACTIONS(1291), - [anon_sym_i128] = ACTIONS(1291), - [anon_sym_isize] = ACTIONS(1291), - [anon_sym_usize] = ACTIONS(1291), - [anon_sym_f32] = ACTIONS(1291), - [anon_sym_f64] = ACTIONS(1291), - [anon_sym_bool] = ACTIONS(1291), - [anon_sym_str] = ACTIONS(1291), - [anon_sym_char] = ACTIONS(1291), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1291), - [anon_sym_break] = ACTIONS(1291), - [anon_sym_const] = ACTIONS(1291), - [anon_sym_continue] = ACTIONS(1291), - [anon_sym_default] = ACTIONS(1291), - [anon_sym_enum] = ACTIONS(1291), - [anon_sym_fn] = ACTIONS(1291), - [anon_sym_for] = ACTIONS(1291), - [anon_sym_if] = ACTIONS(1291), - [anon_sym_impl] = ACTIONS(1291), - [anon_sym_let] = ACTIONS(1291), - [anon_sym_loop] = ACTIONS(1291), - [anon_sym_match] = ACTIONS(1291), - [anon_sym_mod] = ACTIONS(1291), - [anon_sym_pub] = ACTIONS(1291), - [anon_sym_return] = ACTIONS(1291), - [anon_sym_static] = ACTIONS(1291), - [anon_sym_struct] = ACTIONS(1291), - [anon_sym_trait] = ACTIONS(1291), - [anon_sym_type] = ACTIONS(1291), - [anon_sym_union] = ACTIONS(1291), - [anon_sym_unsafe] = ACTIONS(1291), - [anon_sym_use] = ACTIONS(1291), - [anon_sym_while] = ACTIONS(1291), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1289), - [anon_sym_extern] = ACTIONS(1291), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_COLON_COLON] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1289), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_move] = ACTIONS(1291), - [sym_integer_literal] = ACTIONS(1289), - [aux_sym_string_literal_token1] = ACTIONS(1289), - [sym_char_literal] = ACTIONS(1289), - [anon_sym_true] = ACTIONS(1291), - [anon_sym_false] = ACTIONS(1291), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1291), - [sym_super] = ACTIONS(1291), - [sym_crate] = ACTIONS(1291), - [sym_metavariable] = ACTIONS(1289), - [sym_raw_string_literal] = ACTIONS(1289), - [sym_float_literal] = ACTIONS(1289), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1298), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(1293), - [sym_identifier] = ACTIONS(1295), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym_macro_rules_BANG] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(1293), - [anon_sym_LBRACE] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1293), - [anon_sym_STAR] = ACTIONS(1293), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_SQUOTE] = ACTIONS(1295), - [anon_sym_async] = ACTIONS(1295), - [anon_sym_break] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_continue] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_enum] = ACTIONS(1295), - [anon_sym_fn] = ACTIONS(1295), - [anon_sym_for] = ACTIONS(1295), - [anon_sym_if] = ACTIONS(1295), - [anon_sym_impl] = ACTIONS(1295), - [anon_sym_let] = ACTIONS(1295), - [anon_sym_loop] = ACTIONS(1295), - [anon_sym_match] = ACTIONS(1295), - [anon_sym_mod] = ACTIONS(1295), - [anon_sym_pub] = ACTIONS(1295), - [anon_sym_return] = ACTIONS(1295), - [anon_sym_static] = ACTIONS(1295), - [anon_sym_struct] = ACTIONS(1295), - [anon_sym_trait] = ACTIONS(1295), - [anon_sym_type] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_unsafe] = ACTIONS(1295), - [anon_sym_use] = ACTIONS(1295), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_POUND] = ACTIONS(1293), - [anon_sym_BANG] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1293), - [anon_sym_COLON_COLON] = ACTIONS(1293), - [anon_sym_AMP] = ACTIONS(1293), - [anon_sym_DOT_DOT] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1293), - [anon_sym_PIPE] = ACTIONS(1293), - [anon_sym_move] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [aux_sym_string_literal_token1] = ACTIONS(1293), - [sym_char_literal] = ACTIONS(1293), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1302), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_macro_rules_BANG] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_RBRACE] = ACTIONS(1300), + [anon_sym_LBRACK] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_u8] = ACTIONS(1302), + [anon_sym_i8] = ACTIONS(1302), + [anon_sym_u16] = ACTIONS(1302), + [anon_sym_i16] = ACTIONS(1302), + [anon_sym_u32] = ACTIONS(1302), + [anon_sym_i32] = ACTIONS(1302), + [anon_sym_u64] = ACTIONS(1302), + [anon_sym_i64] = ACTIONS(1302), + [anon_sym_u128] = ACTIONS(1302), + [anon_sym_i128] = ACTIONS(1302), + [anon_sym_isize] = ACTIONS(1302), + [anon_sym_usize] = ACTIONS(1302), + [anon_sym_f32] = ACTIONS(1302), + [anon_sym_f64] = ACTIONS(1302), + [anon_sym_bool] = ACTIONS(1302), + [anon_sym_str] = ACTIONS(1302), + [anon_sym_char] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [anon_sym_async] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_fn] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_impl] = ACTIONS(1302), + [anon_sym_let] = ACTIONS(1302), + [anon_sym_loop] = ACTIONS(1302), + [anon_sym_match] = ACTIONS(1302), + [anon_sym_mod] = ACTIONS(1302), + [anon_sym_pub] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_trait] = ACTIONS(1302), + [anon_sym_type] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_unsafe] = ACTIONS(1302), + [anon_sym_use] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_POUND] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_DOT_DOT] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_move] = ACTIONS(1302), + [sym_integer_literal] = ACTIONS(1300), + [aux_sym_string_literal_token1] = ACTIONS(1300), + [sym_char_literal] = ACTIONS(1300), + [anon_sym_true] = ACTIONS(1302), + [anon_sym_false] = ACTIONS(1302), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1293), - [sym_raw_string_literal] = ACTIONS(1293), - [sym_float_literal] = ACTIONS(1293), + [sym_self] = ACTIONS(1302), + [sym_super] = ACTIONS(1302), + [sym_crate] = ACTIONS(1302), + [sym_metavariable] = ACTIONS(1300), + [sym_raw_string_literal] = ACTIONS(1300), + [sym_float_literal] = ACTIONS(1300), [sym_block_comment] = ACTIONS(3), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(1297), - [sym_identifier] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_macro_rules_BANG] = ACTIONS(1297), - [anon_sym_LPAREN] = ACTIONS(1297), - [anon_sym_LBRACE] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_STAR] = ACTIONS(1297), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_SQUOTE] = ACTIONS(1299), - [anon_sym_async] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_enum] = ACTIONS(1299), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_impl] = ACTIONS(1299), - [anon_sym_let] = ACTIONS(1299), - [anon_sym_loop] = ACTIONS(1299), - [anon_sym_match] = ACTIONS(1299), - [anon_sym_mod] = ACTIONS(1299), - [anon_sym_pub] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_static] = ACTIONS(1299), - [anon_sym_struct] = ACTIONS(1299), - [anon_sym_trait] = ACTIONS(1299), - [anon_sym_type] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_unsafe] = ACTIONS(1299), - [anon_sym_use] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1297), - [anon_sym_DOT_DOT] = ACTIONS(1297), - [anon_sym_DASH] = ACTIONS(1297), - [anon_sym_PIPE] = ACTIONS(1297), - [anon_sym_move] = ACTIONS(1299), - [sym_integer_literal] = ACTIONS(1297), - [aux_sym_string_literal_token1] = ACTIONS(1297), - [sym_char_literal] = ACTIONS(1297), - [anon_sym_true] = ACTIONS(1299), - [anon_sym_false] = ACTIONS(1299), + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_macro_rules_BANG] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_u8] = ACTIONS(1306), + [anon_sym_i8] = ACTIONS(1306), + [anon_sym_u16] = ACTIONS(1306), + [anon_sym_i16] = ACTIONS(1306), + [anon_sym_u32] = ACTIONS(1306), + [anon_sym_i32] = ACTIONS(1306), + [anon_sym_u64] = ACTIONS(1306), + [anon_sym_i64] = ACTIONS(1306), + [anon_sym_u128] = ACTIONS(1306), + [anon_sym_i128] = ACTIONS(1306), + [anon_sym_isize] = ACTIONS(1306), + [anon_sym_usize] = ACTIONS(1306), + [anon_sym_f32] = ACTIONS(1306), + [anon_sym_f64] = ACTIONS(1306), + [anon_sym_bool] = ACTIONS(1306), + [anon_sym_str] = ACTIONS(1306), + [anon_sym_char] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_fn] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_impl] = ACTIONS(1306), + [anon_sym_let] = ACTIONS(1306), + [anon_sym_loop] = ACTIONS(1306), + [anon_sym_match] = ACTIONS(1306), + [anon_sym_mod] = ACTIONS(1306), + [anon_sym_pub] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_trait] = ACTIONS(1306), + [anon_sym_type] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1306), + [anon_sym_use] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_POUND] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_DOT_DOT] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_move] = ACTIONS(1306), + [sym_integer_literal] = ACTIONS(1304), + [aux_sym_string_literal_token1] = ACTIONS(1304), + [sym_char_literal] = ACTIONS(1304), + [anon_sym_true] = ACTIONS(1306), + [anon_sym_false] = ACTIONS(1306), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1299), - [sym_super] = ACTIONS(1299), - [sym_crate] = ACTIONS(1299), - [sym_metavariable] = ACTIONS(1297), - [sym_raw_string_literal] = ACTIONS(1297), - [sym_float_literal] = ACTIONS(1297), + [sym_self] = ACTIONS(1306), + [sym_super] = ACTIONS(1306), + [sym_crate] = ACTIONS(1306), + [sym_metavariable] = ACTIONS(1304), + [sym_raw_string_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1304), [sym_block_comment] = ACTIONS(3), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(1301), - [sym_identifier] = ACTIONS(1303), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_macro_rules_BANG] = ACTIONS(1301), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(1301), - [anon_sym_u8] = ACTIONS(1303), - [anon_sym_i8] = ACTIONS(1303), - [anon_sym_u16] = ACTIONS(1303), - [anon_sym_i16] = ACTIONS(1303), - [anon_sym_u32] = ACTIONS(1303), - [anon_sym_i32] = ACTIONS(1303), - [anon_sym_u64] = ACTIONS(1303), - [anon_sym_i64] = ACTIONS(1303), - [anon_sym_u128] = ACTIONS(1303), - [anon_sym_i128] = ACTIONS(1303), - [anon_sym_isize] = ACTIONS(1303), - [anon_sym_usize] = ACTIONS(1303), - [anon_sym_f32] = ACTIONS(1303), - [anon_sym_f64] = ACTIONS(1303), - [anon_sym_bool] = ACTIONS(1303), - [anon_sym_str] = ACTIONS(1303), - [anon_sym_char] = ACTIONS(1303), - [anon_sym_SQUOTE] = ACTIONS(1303), - [anon_sym_async] = ACTIONS(1303), - [anon_sym_break] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_continue] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_enum] = ACTIONS(1303), - [anon_sym_fn] = ACTIONS(1303), - [anon_sym_for] = ACTIONS(1303), - [anon_sym_if] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1303), - [anon_sym_let] = ACTIONS(1303), - [anon_sym_loop] = ACTIONS(1303), - [anon_sym_match] = ACTIONS(1303), - [anon_sym_mod] = ACTIONS(1303), - [anon_sym_pub] = ACTIONS(1303), - [anon_sym_return] = ACTIONS(1303), - [anon_sym_static] = ACTIONS(1303), - [anon_sym_struct] = ACTIONS(1303), - [anon_sym_trait] = ACTIONS(1303), - [anon_sym_type] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1303), - [anon_sym_use] = ACTIONS(1303), - [anon_sym_while] = ACTIONS(1303), - [anon_sym_POUND] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1301), - [anon_sym_COLON_COLON] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_move] = ACTIONS(1303), - [sym_integer_literal] = ACTIONS(1301), - [aux_sym_string_literal_token1] = ACTIONS(1301), - [sym_char_literal] = ACTIONS(1301), - [anon_sym_true] = ACTIONS(1303), - [anon_sym_false] = ACTIONS(1303), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym_macro_rules_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_u8] = ACTIONS(1310), + [anon_sym_i8] = ACTIONS(1310), + [anon_sym_u16] = ACTIONS(1310), + [anon_sym_i16] = ACTIONS(1310), + [anon_sym_u32] = ACTIONS(1310), + [anon_sym_i32] = ACTIONS(1310), + [anon_sym_u64] = ACTIONS(1310), + [anon_sym_i64] = ACTIONS(1310), + [anon_sym_u128] = ACTIONS(1310), + [anon_sym_i128] = ACTIONS(1310), + [anon_sym_isize] = ACTIONS(1310), + [anon_sym_usize] = ACTIONS(1310), + [anon_sym_f32] = ACTIONS(1310), + [anon_sym_f64] = ACTIONS(1310), + [anon_sym_bool] = ACTIONS(1310), + [anon_sym_str] = ACTIONS(1310), + [anon_sym_char] = ACTIONS(1310), + [anon_sym_SQUOTE] = ACTIONS(1310), + [anon_sym_async] = ACTIONS(1310), + [anon_sym_break] = ACTIONS(1310), + [anon_sym_const] = ACTIONS(1310), + [anon_sym_continue] = ACTIONS(1310), + [anon_sym_default] = ACTIONS(1310), + [anon_sym_enum] = ACTIONS(1310), + [anon_sym_fn] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1310), + [anon_sym_if] = ACTIONS(1310), + [anon_sym_impl] = ACTIONS(1310), + [anon_sym_let] = ACTIONS(1310), + [anon_sym_loop] = ACTIONS(1310), + [anon_sym_match] = ACTIONS(1310), + [anon_sym_mod] = ACTIONS(1310), + [anon_sym_pub] = ACTIONS(1310), + [anon_sym_return] = ACTIONS(1310), + [anon_sym_static] = ACTIONS(1310), + [anon_sym_struct] = ACTIONS(1310), + [anon_sym_trait] = ACTIONS(1310), + [anon_sym_type] = ACTIONS(1310), + [anon_sym_union] = ACTIONS(1310), + [anon_sym_unsafe] = ACTIONS(1310), + [anon_sym_use] = ACTIONS(1310), + [anon_sym_while] = ACTIONS(1310), + [anon_sym_POUND] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_extern] = ACTIONS(1310), + [anon_sym_LT] = ACTIONS(1308), + [anon_sym_COLON_COLON] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_DOT_DOT] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(1308), + [anon_sym_move] = ACTIONS(1310), + [sym_integer_literal] = ACTIONS(1308), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1308), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1303), - [sym_super] = ACTIONS(1303), - [sym_crate] = ACTIONS(1303), - [sym_metavariable] = ACTIONS(1301), - [sym_raw_string_literal] = ACTIONS(1301), - [sym_float_literal] = ACTIONS(1301), + [sym_self] = ACTIONS(1310), + [sym_super] = ACTIONS(1310), + [sym_crate] = ACTIONS(1310), + [sym_metavariable] = ACTIONS(1308), + [sym_raw_string_literal] = ACTIONS(1308), + [sym_float_literal] = ACTIONS(1308), [sym_block_comment] = ACTIONS(3), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(1305), - [sym_identifier] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_macro_rules_BANG] = ACTIONS(1305), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_STAR] = ACTIONS(1305), - [anon_sym_u8] = ACTIONS(1307), - [anon_sym_i8] = ACTIONS(1307), - [anon_sym_u16] = ACTIONS(1307), - [anon_sym_i16] = ACTIONS(1307), - [anon_sym_u32] = ACTIONS(1307), - [anon_sym_i32] = ACTIONS(1307), - [anon_sym_u64] = ACTIONS(1307), - [anon_sym_i64] = ACTIONS(1307), - [anon_sym_u128] = ACTIONS(1307), - [anon_sym_i128] = ACTIONS(1307), - [anon_sym_isize] = ACTIONS(1307), - [anon_sym_usize] = ACTIONS(1307), - [anon_sym_f32] = ACTIONS(1307), - [anon_sym_f64] = ACTIONS(1307), - [anon_sym_bool] = ACTIONS(1307), - [anon_sym_str] = ACTIONS(1307), - [anon_sym_char] = ACTIONS(1307), - [anon_sym_SQUOTE] = ACTIONS(1307), - [anon_sym_async] = ACTIONS(1307), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_default] = ACTIONS(1307), - [anon_sym_enum] = ACTIONS(1307), - [anon_sym_fn] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_impl] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_loop] = ACTIONS(1307), - [anon_sym_match] = ACTIONS(1307), - [anon_sym_mod] = ACTIONS(1307), - [anon_sym_pub] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_static] = ACTIONS(1307), - [anon_sym_struct] = ACTIONS(1307), - [anon_sym_trait] = ACTIONS(1307), - [anon_sym_type] = ACTIONS(1307), - [anon_sym_union] = ACTIONS(1307), - [anon_sym_unsafe] = ACTIONS(1307), - [anon_sym_use] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1305), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_COLON_COLON] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DASH] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_move] = ACTIONS(1307), - [sym_integer_literal] = ACTIONS(1305), - [aux_sym_string_literal_token1] = ACTIONS(1305), - [sym_char_literal] = ACTIONS(1305), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), + [ts_builtin_sym_end] = ACTIONS(1312), + [sym_identifier] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1312), + [anon_sym_macro_rules_BANG] = ACTIONS(1312), + [anon_sym_LPAREN] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1312), + [anon_sym_u8] = ACTIONS(1314), + [anon_sym_i8] = ACTIONS(1314), + [anon_sym_u16] = ACTIONS(1314), + [anon_sym_i16] = ACTIONS(1314), + [anon_sym_u32] = ACTIONS(1314), + [anon_sym_i32] = ACTIONS(1314), + [anon_sym_u64] = ACTIONS(1314), + [anon_sym_i64] = ACTIONS(1314), + [anon_sym_u128] = ACTIONS(1314), + [anon_sym_i128] = ACTIONS(1314), + [anon_sym_isize] = ACTIONS(1314), + [anon_sym_usize] = ACTIONS(1314), + [anon_sym_f32] = ACTIONS(1314), + [anon_sym_f64] = ACTIONS(1314), + [anon_sym_bool] = ACTIONS(1314), + [anon_sym_str] = ACTIONS(1314), + [anon_sym_char] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [anon_sym_async] = 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_while] = ACTIONS(1314), + [anon_sym_POUND] = ACTIONS(1312), + [anon_sym_BANG] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1312), + [anon_sym_COLON_COLON] = ACTIONS(1312), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_DOT_DOT] = ACTIONS(1312), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1312), + [anon_sym_move] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1312), + [sym_char_literal] = ACTIONS(1312), + [anon_sym_true] = ACTIONS(1314), + [anon_sym_false] = ACTIONS(1314), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1307), - [sym_super] = ACTIONS(1307), - [sym_crate] = ACTIONS(1307), - [sym_metavariable] = ACTIONS(1305), - [sym_raw_string_literal] = ACTIONS(1305), - [sym_float_literal] = ACTIONS(1305), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1312), + [sym_raw_string_literal] = ACTIONS(1312), + [sym_float_literal] = ACTIONS(1312), [sym_block_comment] = ACTIONS(3), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(1309), - [sym_identifier] = ACTIONS(1311), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_macro_rules_BANG] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_u8] = ACTIONS(1311), - [anon_sym_i8] = ACTIONS(1311), - [anon_sym_u16] = ACTIONS(1311), - [anon_sym_i16] = ACTIONS(1311), - [anon_sym_u32] = ACTIONS(1311), - [anon_sym_i32] = ACTIONS(1311), - [anon_sym_u64] = ACTIONS(1311), - [anon_sym_i64] = ACTIONS(1311), - [anon_sym_u128] = ACTIONS(1311), - [anon_sym_i128] = ACTIONS(1311), - [anon_sym_isize] = ACTIONS(1311), - [anon_sym_usize] = ACTIONS(1311), - [anon_sym_f32] = ACTIONS(1311), - [anon_sym_f64] = ACTIONS(1311), - [anon_sym_bool] = ACTIONS(1311), - [anon_sym_str] = ACTIONS(1311), - [anon_sym_char] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_enum] = ACTIONS(1311), - [anon_sym_fn] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_impl] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_mod] = ACTIONS(1311), - [anon_sym_pub] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_static] = ACTIONS(1311), - [anon_sym_struct] = ACTIONS(1311), - [anon_sym_trait] = ACTIONS(1311), - [anon_sym_type] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_unsafe] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1309), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_LT] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1309), - [anon_sym_move] = ACTIONS(1311), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1309), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1318), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_macro_rules_BANG] = ACTIONS(1316), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_u8] = ACTIONS(1318), + [anon_sym_i8] = ACTIONS(1318), + [anon_sym_u16] = ACTIONS(1318), + [anon_sym_i16] = ACTIONS(1318), + [anon_sym_u32] = ACTIONS(1318), + [anon_sym_i32] = ACTIONS(1318), + [anon_sym_u64] = ACTIONS(1318), + [anon_sym_i64] = ACTIONS(1318), + [anon_sym_u128] = ACTIONS(1318), + [anon_sym_i128] = ACTIONS(1318), + [anon_sym_isize] = ACTIONS(1318), + [anon_sym_usize] = ACTIONS(1318), + [anon_sym_f32] = ACTIONS(1318), + [anon_sym_f64] = ACTIONS(1318), + [anon_sym_bool] = ACTIONS(1318), + [anon_sym_str] = ACTIONS(1318), + [anon_sym_char] = ACTIONS(1318), + [anon_sym_SQUOTE] = ACTIONS(1318), + [anon_sym_async] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_fn] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_impl] = ACTIONS(1318), + [anon_sym_let] = ACTIONS(1318), + [anon_sym_loop] = ACTIONS(1318), + [anon_sym_match] = ACTIONS(1318), + [anon_sym_mod] = ACTIONS(1318), + [anon_sym_pub] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_trait] = ACTIONS(1318), + [anon_sym_type] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_unsafe] = ACTIONS(1318), + [anon_sym_use] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_POUND] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym_LT] = ACTIONS(1316), + [anon_sym_COLON_COLON] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_DOT_DOT] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1316), + [anon_sym_move] = ACTIONS(1318), + [sym_integer_literal] = ACTIONS(1316), + [aux_sym_string_literal_token1] = ACTIONS(1316), + [sym_char_literal] = ACTIONS(1316), + [anon_sym_true] = ACTIONS(1318), + [anon_sym_false] = ACTIONS(1318), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1311), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1309), - [sym_raw_string_literal] = ACTIONS(1309), - [sym_float_literal] = ACTIONS(1309), + [sym_self] = ACTIONS(1318), + [sym_super] = ACTIONS(1318), + [sym_crate] = ACTIONS(1318), + [sym_metavariable] = ACTIONS(1316), + [sym_raw_string_literal] = ACTIONS(1316), + [sym_float_literal] = ACTIONS(1316), [sym_block_comment] = ACTIONS(3), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(1313), - [sym_identifier] = ACTIONS(1315), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_macro_rules_BANG] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1313), - [anon_sym_u8] = ACTIONS(1315), - [anon_sym_i8] = ACTIONS(1315), - [anon_sym_u16] = ACTIONS(1315), - [anon_sym_i16] = ACTIONS(1315), - [anon_sym_u32] = ACTIONS(1315), - [anon_sym_i32] = ACTIONS(1315), - [anon_sym_u64] = ACTIONS(1315), - [anon_sym_i64] = ACTIONS(1315), - [anon_sym_u128] = ACTIONS(1315), - [anon_sym_i128] = ACTIONS(1315), - [anon_sym_isize] = ACTIONS(1315), - [anon_sym_usize] = ACTIONS(1315), - [anon_sym_f32] = ACTIONS(1315), - [anon_sym_f64] = ACTIONS(1315), - [anon_sym_bool] = ACTIONS(1315), - [anon_sym_str] = ACTIONS(1315), - [anon_sym_char] = ACTIONS(1315), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1315), - [anon_sym_break] = ACTIONS(1315), - [anon_sym_const] = ACTIONS(1315), - [anon_sym_continue] = ACTIONS(1315), - [anon_sym_default] = ACTIONS(1315), - [anon_sym_enum] = ACTIONS(1315), - [anon_sym_fn] = ACTIONS(1315), - [anon_sym_for] = ACTIONS(1315), - [anon_sym_if] = ACTIONS(1315), - [anon_sym_impl] = ACTIONS(1315), - [anon_sym_let] = ACTIONS(1315), - [anon_sym_loop] = ACTIONS(1315), - [anon_sym_match] = ACTIONS(1315), - [anon_sym_mod] = ACTIONS(1315), - [anon_sym_pub] = ACTIONS(1315), - [anon_sym_return] = ACTIONS(1315), - [anon_sym_static] = ACTIONS(1315), - [anon_sym_struct] = ACTIONS(1315), - [anon_sym_trait] = ACTIONS(1315), - [anon_sym_type] = ACTIONS(1315), - [anon_sym_union] = ACTIONS(1315), - [anon_sym_unsafe] = ACTIONS(1315), - [anon_sym_use] = ACTIONS(1315), - [anon_sym_while] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1315), - [anon_sym_LT] = ACTIONS(1313), - [anon_sym_COLON_COLON] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1313), - [anon_sym_move] = ACTIONS(1315), - [sym_integer_literal] = ACTIONS(1313), - [aux_sym_string_literal_token1] = ACTIONS(1313), - [sym_char_literal] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_DOT_DOT] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_move] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1315), - [sym_super] = ACTIONS(1315), - [sym_crate] = ACTIONS(1315), - [sym_metavariable] = ACTIONS(1313), - [sym_raw_string_literal] = ACTIONS(1313), - [sym_float_literal] = ACTIONS(1313), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), + [sym_metavariable] = ACTIONS(1320), + [sym_raw_string_literal] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), [sym_block_comment] = ACTIONS(3), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(1317), - [sym_identifier] = ACTIONS(1319), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_macro_rules_BANG] = ACTIONS(1317), - [anon_sym_LPAREN] = ACTIONS(1317), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1317), - [anon_sym_LBRACK] = ACTIONS(1317), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_u8] = ACTIONS(1319), - [anon_sym_i8] = ACTIONS(1319), - [anon_sym_u16] = ACTIONS(1319), - [anon_sym_i16] = ACTIONS(1319), - [anon_sym_u32] = ACTIONS(1319), - [anon_sym_i32] = ACTIONS(1319), - [anon_sym_u64] = ACTIONS(1319), - [anon_sym_i64] = ACTIONS(1319), - [anon_sym_u128] = ACTIONS(1319), - [anon_sym_i128] = ACTIONS(1319), - [anon_sym_isize] = ACTIONS(1319), - [anon_sym_usize] = ACTIONS(1319), - [anon_sym_f32] = ACTIONS(1319), - [anon_sym_f64] = ACTIONS(1319), - [anon_sym_bool] = ACTIONS(1319), - [anon_sym_str] = ACTIONS(1319), - [anon_sym_char] = ACTIONS(1319), - [anon_sym_SQUOTE] = ACTIONS(1319), - [anon_sym_async] = ACTIONS(1319), - [anon_sym_break] = ACTIONS(1319), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_continue] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1319), - [anon_sym_enum] = ACTIONS(1319), - [anon_sym_fn] = ACTIONS(1319), - [anon_sym_for] = ACTIONS(1319), - [anon_sym_if] = ACTIONS(1319), - [anon_sym_impl] = ACTIONS(1319), - [anon_sym_let] = ACTIONS(1319), - [anon_sym_loop] = ACTIONS(1319), - [anon_sym_match] = ACTIONS(1319), - [anon_sym_mod] = ACTIONS(1319), - [anon_sym_pub] = ACTIONS(1319), - [anon_sym_return] = ACTIONS(1319), - [anon_sym_static] = ACTIONS(1319), - [anon_sym_struct] = ACTIONS(1319), - [anon_sym_trait] = ACTIONS(1319), - [anon_sym_type] = ACTIONS(1319), - [anon_sym_union] = ACTIONS(1319), - [anon_sym_unsafe] = ACTIONS(1319), - [anon_sym_use] = ACTIONS(1319), - [anon_sym_while] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1317), - [anon_sym_BANG] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1319), - [anon_sym_LT] = ACTIONS(1317), - [anon_sym_COLON_COLON] = ACTIONS(1317), - [anon_sym_AMP] = ACTIONS(1317), - [anon_sym_DOT_DOT] = ACTIONS(1317), - [anon_sym_DASH] = ACTIONS(1317), - [anon_sym_PIPE] = ACTIONS(1317), - [anon_sym_move] = ACTIONS(1319), - [sym_integer_literal] = ACTIONS(1317), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1317), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [ts_builtin_sym_end] = ACTIONS(1324), + [sym_identifier] = ACTIONS(1326), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym_macro_rules_BANG] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_LBRACK] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_u8] = ACTIONS(1326), + [anon_sym_i8] = ACTIONS(1326), + [anon_sym_u16] = ACTIONS(1326), + [anon_sym_i16] = ACTIONS(1326), + [anon_sym_u32] = ACTIONS(1326), + [anon_sym_i32] = ACTIONS(1326), + [anon_sym_u64] = ACTIONS(1326), + [anon_sym_i64] = ACTIONS(1326), + [anon_sym_u128] = ACTIONS(1326), + [anon_sym_i128] = ACTIONS(1326), + [anon_sym_isize] = ACTIONS(1326), + [anon_sym_usize] = ACTIONS(1326), + [anon_sym_f32] = ACTIONS(1326), + [anon_sym_f64] = ACTIONS(1326), + [anon_sym_bool] = ACTIONS(1326), + [anon_sym_str] = ACTIONS(1326), + [anon_sym_char] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [anon_sym_async] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_fn] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_impl] = ACTIONS(1326), + [anon_sym_let] = ACTIONS(1326), + [anon_sym_loop] = ACTIONS(1326), + [anon_sym_match] = ACTIONS(1326), + [anon_sym_mod] = ACTIONS(1326), + [anon_sym_pub] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_trait] = ACTIONS(1326), + [anon_sym_type] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_unsafe] = ACTIONS(1326), + [anon_sym_use] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_POUND] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_COLON_COLON] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_DOT_DOT] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_move] = ACTIONS(1326), + [sym_integer_literal] = ACTIONS(1324), + [aux_sym_string_literal_token1] = ACTIONS(1324), + [sym_char_literal] = ACTIONS(1324), + [anon_sym_true] = ACTIONS(1326), + [anon_sym_false] = ACTIONS(1326), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1319), - [sym_super] = ACTIONS(1319), - [sym_crate] = ACTIONS(1319), - [sym_metavariable] = ACTIONS(1317), - [sym_raw_string_literal] = ACTIONS(1317), - [sym_float_literal] = ACTIONS(1317), + [sym_self] = ACTIONS(1326), + [sym_super] = ACTIONS(1326), + [sym_crate] = ACTIONS(1326), + [sym_metavariable] = ACTIONS(1324), + [sym_raw_string_literal] = ACTIONS(1324), + [sym_float_literal] = ACTIONS(1324), [sym_block_comment] = ACTIONS(3), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(1321), - [sym_identifier] = ACTIONS(1323), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_macro_rules_BANG] = ACTIONS(1321), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1321), - [anon_sym_u8] = ACTIONS(1323), - [anon_sym_i8] = ACTIONS(1323), - [anon_sym_u16] = ACTIONS(1323), - [anon_sym_i16] = ACTIONS(1323), - [anon_sym_u32] = ACTIONS(1323), - [anon_sym_i32] = ACTIONS(1323), - [anon_sym_u64] = ACTIONS(1323), - [anon_sym_i64] = ACTIONS(1323), - [anon_sym_u128] = ACTIONS(1323), - [anon_sym_i128] = ACTIONS(1323), - [anon_sym_isize] = ACTIONS(1323), - [anon_sym_usize] = ACTIONS(1323), - [anon_sym_f32] = ACTIONS(1323), - [anon_sym_f64] = ACTIONS(1323), - [anon_sym_bool] = ACTIONS(1323), - [anon_sym_str] = ACTIONS(1323), - [anon_sym_char] = ACTIONS(1323), - [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_async] = ACTIONS(1323), - [anon_sym_break] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_continue] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_enum] = ACTIONS(1323), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1323), - [anon_sym_if] = ACTIONS(1323), - [anon_sym_impl] = ACTIONS(1323), - [anon_sym_let] = ACTIONS(1323), - [anon_sym_loop] = ACTIONS(1323), - [anon_sym_match] = ACTIONS(1323), - [anon_sym_mod] = ACTIONS(1323), - [anon_sym_pub] = ACTIONS(1323), - [anon_sym_return] = ACTIONS(1323), - [anon_sym_static] = ACTIONS(1323), - [anon_sym_struct] = ACTIONS(1323), - [anon_sym_trait] = ACTIONS(1323), - [anon_sym_type] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_unsafe] = ACTIONS(1323), - [anon_sym_use] = ACTIONS(1323), - [anon_sym_while] = ACTIONS(1323), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_BANG] = ACTIONS(1321), - [anon_sym_extern] = ACTIONS(1323), - [anon_sym_LT] = ACTIONS(1321), - [anon_sym_COLON_COLON] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), - [anon_sym_DOT_DOT] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1321), - [anon_sym_PIPE] = ACTIONS(1321), - [anon_sym_move] = ACTIONS(1323), - [sym_integer_literal] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [sym_char_literal] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1330), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym_macro_rules_BANG] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_fn] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_impl] = ACTIONS(1330), + [anon_sym_let] = ACTIONS(1330), + [anon_sym_loop] = ACTIONS(1330), + [anon_sym_match] = ACTIONS(1330), + [anon_sym_mod] = ACTIONS(1330), + [anon_sym_pub] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_trait] = ACTIONS(1330), + [anon_sym_type] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_unsafe] = ACTIONS(1330), + [anon_sym_use] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_POUND] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_COLON_COLON] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_DOT_DOT] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_move] = ACTIONS(1330), + [sym_integer_literal] = ACTIONS(1328), + [aux_sym_string_literal_token1] = ACTIONS(1328), + [sym_char_literal] = ACTIONS(1328), + [anon_sym_true] = ACTIONS(1330), + [anon_sym_false] = ACTIONS(1330), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1323), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1321), - [sym_raw_string_literal] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1321), + [sym_self] = ACTIONS(1330), + [sym_super] = ACTIONS(1330), + [sym_crate] = ACTIONS(1330), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1328), + [sym_float_literal] = ACTIONS(1328), [sym_block_comment] = ACTIONS(3), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_macro_rules_BANG] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_u8] = ACTIONS(1327), - [anon_sym_i8] = ACTIONS(1327), - [anon_sym_u16] = ACTIONS(1327), - [anon_sym_i16] = ACTIONS(1327), - [anon_sym_u32] = ACTIONS(1327), - [anon_sym_i32] = ACTIONS(1327), - [anon_sym_u64] = ACTIONS(1327), - [anon_sym_i64] = ACTIONS(1327), - [anon_sym_u128] = ACTIONS(1327), - [anon_sym_i128] = ACTIONS(1327), - [anon_sym_isize] = ACTIONS(1327), - [anon_sym_usize] = ACTIONS(1327), - [anon_sym_f32] = ACTIONS(1327), - [anon_sym_f64] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_char] = ACTIONS(1327), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_async] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_fn] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1327), - [anon_sym_let] = ACTIONS(1327), - [anon_sym_loop] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1327), - [anon_sym_mod] = ACTIONS(1327), - [anon_sym_pub] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_trait] = ACTIONS(1327), - [anon_sym_type] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1327), - [anon_sym_use] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_COLON_COLON] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1325), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_move] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [aux_sym_string_literal_token1] = ACTIONS(1325), - [sym_char_literal] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1327), - [anon_sym_false] = ACTIONS(1327), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1327), - [sym_super] = ACTIONS(1327), - [sym_crate] = ACTIONS(1327), - [sym_metavariable] = ACTIONS(1325), - [sym_raw_string_literal] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1325), + [sym__token_pattern] = STATE(436), + [sym_token_tree_pattern] = STATE(436), + [sym_token_binding_pattern] = STATE(436), + [sym_token_repetition_pattern] = STATE(436), + [sym__literal] = STATE(436), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(436), + [sym_identifier] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1332), + [anon_sym_i8] = ACTIONS(1332), + [anon_sym_u16] = ACTIONS(1332), + [anon_sym_i16] = ACTIONS(1332), + [anon_sym_u32] = ACTIONS(1332), + [anon_sym_i32] = ACTIONS(1332), + [anon_sym_u64] = ACTIONS(1332), + [anon_sym_i64] = ACTIONS(1332), + [anon_sym_u128] = ACTIONS(1332), + [anon_sym_i128] = ACTIONS(1332), + [anon_sym_isize] = ACTIONS(1332), + [anon_sym_usize] = ACTIONS(1332), + [anon_sym_f32] = ACTIONS(1332), + [anon_sym_f64] = ACTIONS(1332), + [anon_sym_bool] = ACTIONS(1332), + [anon_sym_str] = ACTIONS(1332), + [anon_sym_char] = ACTIONS(1332), + [aux_sym__non_special_token_token1] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_as] = ACTIONS(1332), + [anon_sym_async] = ACTIONS(1332), + [anon_sym_await] = ACTIONS(1332), + [anon_sym_break] = ACTIONS(1332), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_continue] = ACTIONS(1332), + [anon_sym_default] = ACTIONS(1332), + [anon_sym_enum] = ACTIONS(1332), + [anon_sym_fn] = ACTIONS(1332), + [anon_sym_for] = ACTIONS(1332), + [anon_sym_if] = ACTIONS(1332), + [anon_sym_impl] = ACTIONS(1332), + [anon_sym_let] = ACTIONS(1332), + [anon_sym_loop] = ACTIONS(1332), + [anon_sym_match] = ACTIONS(1332), + [anon_sym_mod] = ACTIONS(1332), + [anon_sym_pub] = ACTIONS(1332), + [anon_sym_return] = ACTIONS(1332), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_struct] = ACTIONS(1332), + [anon_sym_trait] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_union] = ACTIONS(1332), + [anon_sym_unsafe] = ACTIONS(1332), + [anon_sym_use] = ACTIONS(1332), + [anon_sym_where] = ACTIONS(1332), + [anon_sym_while] = ACTIONS(1332), + [sym_mutable_specifier] = ACTIONS(1332), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1332), + [sym_super] = ACTIONS(1332), + [sym_crate] = ACTIONS(1332), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(1329), - [sym_identifier] = ACTIONS(1331), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_macro_rules_BANG] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACE] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_STAR] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1331), - [anon_sym_i8] = ACTIONS(1331), - [anon_sym_u16] = ACTIONS(1331), - [anon_sym_i16] = ACTIONS(1331), - [anon_sym_u32] = ACTIONS(1331), - [anon_sym_i32] = ACTIONS(1331), - [anon_sym_u64] = ACTIONS(1331), - [anon_sym_i64] = ACTIONS(1331), - [anon_sym_u128] = ACTIONS(1331), - [anon_sym_i128] = ACTIONS(1331), - [anon_sym_isize] = ACTIONS(1331), - [anon_sym_usize] = ACTIONS(1331), - [anon_sym_f32] = ACTIONS(1331), - [anon_sym_f64] = ACTIONS(1331), - [anon_sym_bool] = ACTIONS(1331), - [anon_sym_str] = ACTIONS(1331), - [anon_sym_char] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1331), - [anon_sym_async] = ACTIONS(1331), - [anon_sym_break] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_continue] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_enum] = ACTIONS(1331), - [anon_sym_fn] = ACTIONS(1331), - [anon_sym_for] = ACTIONS(1331), - [anon_sym_if] = ACTIONS(1331), - [anon_sym_impl] = ACTIONS(1331), - [anon_sym_let] = ACTIONS(1331), - [anon_sym_loop] = ACTIONS(1331), - [anon_sym_match] = ACTIONS(1331), - [anon_sym_mod] = ACTIONS(1331), - [anon_sym_pub] = ACTIONS(1331), - [anon_sym_return] = ACTIONS(1331), - [anon_sym_static] = ACTIONS(1331), - [anon_sym_struct] = ACTIONS(1331), - [anon_sym_trait] = ACTIONS(1331), - [anon_sym_type] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_unsafe] = ACTIONS(1331), - [anon_sym_use] = ACTIONS(1331), - [anon_sym_while] = ACTIONS(1331), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_BANG] = ACTIONS(1329), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1329), - [anon_sym_AMP] = ACTIONS(1329), - [anon_sym_DOT_DOT] = ACTIONS(1329), - [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_PIPE] = ACTIONS(1329), - [anon_sym_move] = ACTIONS(1331), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1329), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1331), - [sym_super] = ACTIONS(1331), - [sym_crate] = ACTIONS(1331), - [sym_metavariable] = ACTIONS(1329), - [sym_raw_string_literal] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), + [sym__token_pattern] = STATE(246), + [sym_token_tree_pattern] = STATE(246), + [sym_token_binding_pattern] = STATE(246), + [sym_token_repetition_pattern] = STATE(246), + [sym__literal] = STATE(246), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [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(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(1333), - [sym_identifier] = ACTIONS(1335), - [anon_sym_SEMI] = ACTIONS(1333), - [anon_sym_macro_rules_BANG] = ACTIONS(1333), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1333), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_SQUOTE] = ACTIONS(1335), - [anon_sym_async] = ACTIONS(1335), - [anon_sym_break] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_continue] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_enum] = ACTIONS(1335), - [anon_sym_fn] = ACTIONS(1335), - [anon_sym_for] = ACTIONS(1335), - [anon_sym_if] = ACTIONS(1335), - [anon_sym_impl] = ACTIONS(1335), - [anon_sym_let] = ACTIONS(1335), - [anon_sym_loop] = ACTIONS(1335), - [anon_sym_match] = ACTIONS(1335), - [anon_sym_mod] = ACTIONS(1335), - [anon_sym_pub] = ACTIONS(1335), - [anon_sym_return] = ACTIONS(1335), - [anon_sym_static] = ACTIONS(1335), - [anon_sym_struct] = ACTIONS(1335), - [anon_sym_trait] = ACTIONS(1335), - [anon_sym_type] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_unsafe] = ACTIONS(1335), - [anon_sym_use] = ACTIONS(1335), - [anon_sym_while] = ACTIONS(1335), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_BANG] = ACTIONS(1333), - [anon_sym_extern] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1333), - [anon_sym_COLON_COLON] = ACTIONS(1333), - [anon_sym_AMP] = ACTIONS(1333), - [anon_sym_DOT_DOT] = ACTIONS(1333), - [anon_sym_DASH] = ACTIONS(1333), - [anon_sym_PIPE] = ACTIONS(1333), - [anon_sym_move] = ACTIONS(1335), - [sym_integer_literal] = ACTIONS(1333), - [aux_sym_string_literal_token1] = ACTIONS(1333), - [sym_char_literal] = ACTIONS(1333), - [anon_sym_true] = ACTIONS(1335), - [anon_sym_false] = ACTIONS(1335), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1340), + [anon_sym_i8] = ACTIONS(1340), + [anon_sym_u16] = ACTIONS(1340), + [anon_sym_i16] = ACTIONS(1340), + [anon_sym_u32] = ACTIONS(1340), + [anon_sym_i32] = ACTIONS(1340), + [anon_sym_u64] = ACTIONS(1340), + [anon_sym_i64] = ACTIONS(1340), + [anon_sym_u128] = ACTIONS(1340), + [anon_sym_i128] = ACTIONS(1340), + [anon_sym_isize] = ACTIONS(1340), + [anon_sym_usize] = ACTIONS(1340), + [anon_sym_f32] = ACTIONS(1340), + [anon_sym_f64] = ACTIONS(1340), + [anon_sym_bool] = ACTIONS(1340), + [anon_sym_str] = ACTIONS(1340), + [anon_sym_char] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_async] = ACTIONS(1340), + [anon_sym_break] = ACTIONS(1340), + [anon_sym_const] = ACTIONS(1340), + [anon_sym_continue] = ACTIONS(1340), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_enum] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1340), + [anon_sym_for] = ACTIONS(1340), + [anon_sym_if] = ACTIONS(1340), + [anon_sym_impl] = ACTIONS(1340), + [anon_sym_let] = ACTIONS(1340), + [anon_sym_loop] = ACTIONS(1340), + [anon_sym_match] = ACTIONS(1340), + [anon_sym_mod] = ACTIONS(1340), + [anon_sym_pub] = ACTIONS(1340), + [anon_sym_return] = ACTIONS(1340), + [anon_sym_static] = ACTIONS(1340), + [anon_sym_struct] = ACTIONS(1340), + [anon_sym_trait] = ACTIONS(1340), + [anon_sym_type] = ACTIONS(1340), + [anon_sym_union] = ACTIONS(1340), + [anon_sym_unsafe] = ACTIONS(1340), + [anon_sym_use] = ACTIONS(1340), + [anon_sym_while] = ACTIONS(1340), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_BANG] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_AMP] = ACTIONS(1338), + [anon_sym_DOT_DOT] = ACTIONS(1338), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1338), + [anon_sym_move] = ACTIONS(1340), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1340), + [anon_sym_false] = ACTIONS(1340), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1335), - [sym_super] = ACTIONS(1335), - [sym_crate] = ACTIONS(1335), - [sym_metavariable] = ACTIONS(1333), - [sym_raw_string_literal] = ACTIONS(1333), - [sym_float_literal] = ACTIONS(1333), + [sym_self] = ACTIONS(1340), + [sym_super] = ACTIONS(1340), + [sym_crate] = ACTIONS(1340), + [sym_metavariable] = ACTIONS(1338), + [sym_raw_string_literal] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), [sym_block_comment] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1337), - [sym_identifier] = ACTIONS(1339), - [anon_sym_SEMI] = ACTIONS(1337), - [anon_sym_macro_rules_BANG] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_LBRACE] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_u8] = ACTIONS(1339), - [anon_sym_i8] = ACTIONS(1339), - [anon_sym_u16] = ACTIONS(1339), - [anon_sym_i16] = ACTIONS(1339), - [anon_sym_u32] = ACTIONS(1339), - [anon_sym_i32] = ACTIONS(1339), - [anon_sym_u64] = ACTIONS(1339), - [anon_sym_i64] = ACTIONS(1339), - [anon_sym_u128] = ACTIONS(1339), - [anon_sym_i128] = ACTIONS(1339), - [anon_sym_isize] = ACTIONS(1339), - [anon_sym_usize] = ACTIONS(1339), - [anon_sym_f32] = ACTIONS(1339), - [anon_sym_f64] = ACTIONS(1339), - [anon_sym_bool] = ACTIONS(1339), - [anon_sym_str] = ACTIONS(1339), - [anon_sym_char] = ACTIONS(1339), - [anon_sym_SQUOTE] = ACTIONS(1339), - [anon_sym_async] = ACTIONS(1339), - [anon_sym_break] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_continue] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_enum] = ACTIONS(1339), - [anon_sym_fn] = ACTIONS(1339), - [anon_sym_for] = ACTIONS(1339), - [anon_sym_if] = ACTIONS(1339), - [anon_sym_impl] = ACTIONS(1339), - [anon_sym_let] = ACTIONS(1339), - [anon_sym_loop] = ACTIONS(1339), - [anon_sym_match] = ACTIONS(1339), - [anon_sym_mod] = ACTIONS(1339), - [anon_sym_pub] = ACTIONS(1339), - [anon_sym_return] = ACTIONS(1339), - [anon_sym_static] = ACTIONS(1339), - [anon_sym_struct] = ACTIONS(1339), - [anon_sym_trait] = ACTIONS(1339), - [anon_sym_type] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_unsafe] = ACTIONS(1339), - [anon_sym_use] = ACTIONS(1339), - [anon_sym_while] = ACTIONS(1339), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_extern] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_DOT_DOT] = ACTIONS(1337), - [anon_sym_DASH] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1337), - [anon_sym_move] = ACTIONS(1339), - [sym_integer_literal] = ACTIONS(1337), - [aux_sym_string_literal_token1] = ACTIONS(1337), - [sym_char_literal] = ACTIONS(1337), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1339), - [sym_super] = ACTIONS(1339), - [sym_crate] = ACTIONS(1339), - [sym_metavariable] = ACTIONS(1337), - [sym_raw_string_literal] = ACTIONS(1337), - [sym_float_literal] = ACTIONS(1337), + [sym__token_pattern] = STATE(444), + [sym_token_tree_pattern] = STATE(444), + [sym_token_binding_pattern] = STATE(444), + [sym_token_repetition_pattern] = STATE(444), + [sym__literal] = STATE(444), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(444), + [sym_identifier] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1342), + [anon_sym_i8] = ACTIONS(1342), + [anon_sym_u16] = ACTIONS(1342), + [anon_sym_i16] = ACTIONS(1342), + [anon_sym_u32] = ACTIONS(1342), + [anon_sym_i32] = ACTIONS(1342), + [anon_sym_u64] = ACTIONS(1342), + [anon_sym_i64] = ACTIONS(1342), + [anon_sym_u128] = ACTIONS(1342), + [anon_sym_i128] = ACTIONS(1342), + [anon_sym_isize] = ACTIONS(1342), + [anon_sym_usize] = ACTIONS(1342), + [anon_sym_f32] = ACTIONS(1342), + [anon_sym_f64] = ACTIONS(1342), + [anon_sym_bool] = ACTIONS(1342), + [anon_sym_str] = ACTIONS(1342), + [anon_sym_char] = ACTIONS(1342), + [aux_sym__non_special_token_token1] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [anon_sym_as] = ACTIONS(1342), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_await] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_fn] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_impl] = ACTIONS(1342), + [anon_sym_let] = ACTIONS(1342), + [anon_sym_loop] = ACTIONS(1342), + [anon_sym_match] = ACTIONS(1342), + [anon_sym_mod] = ACTIONS(1342), + [anon_sym_pub] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_trait] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1342), + [anon_sym_use] = ACTIONS(1342), + [anon_sym_where] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [sym_mutable_specifier] = ACTIONS(1342), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1342), + [sym_super] = ACTIONS(1342), + [sym_crate] = ACTIONS(1342), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(1341), - [sym_identifier] = ACTIONS(1343), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_macro_rules_BANG] = ACTIONS(1341), - [anon_sym_LPAREN] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_RBRACE] = ACTIONS(1341), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_STAR] = ACTIONS(1341), - [anon_sym_u8] = ACTIONS(1343), - [anon_sym_i8] = ACTIONS(1343), - [anon_sym_u16] = ACTIONS(1343), - [anon_sym_i16] = ACTIONS(1343), - [anon_sym_u32] = ACTIONS(1343), - [anon_sym_i32] = ACTIONS(1343), - [anon_sym_u64] = ACTIONS(1343), - [anon_sym_i64] = ACTIONS(1343), - [anon_sym_u128] = ACTIONS(1343), - [anon_sym_i128] = ACTIONS(1343), - [anon_sym_isize] = ACTIONS(1343), - [anon_sym_usize] = ACTIONS(1343), - [anon_sym_f32] = ACTIONS(1343), - [anon_sym_f64] = ACTIONS(1343), - [anon_sym_bool] = ACTIONS(1343), - [anon_sym_str] = ACTIONS(1343), - [anon_sym_char] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1343), - [anon_sym_async] = ACTIONS(1343), - [anon_sym_break] = ACTIONS(1343), - [anon_sym_const] = ACTIONS(1343), - [anon_sym_continue] = ACTIONS(1343), - [anon_sym_default] = ACTIONS(1343), - [anon_sym_enum] = ACTIONS(1343), - [anon_sym_fn] = ACTIONS(1343), - [anon_sym_for] = ACTIONS(1343), - [anon_sym_if] = ACTIONS(1343), - [anon_sym_impl] = ACTIONS(1343), - [anon_sym_let] = ACTIONS(1343), - [anon_sym_loop] = ACTIONS(1343), - [anon_sym_match] = ACTIONS(1343), - [anon_sym_mod] = ACTIONS(1343), - [anon_sym_pub] = ACTIONS(1343), - [anon_sym_return] = ACTIONS(1343), - [anon_sym_static] = ACTIONS(1343), - [anon_sym_struct] = ACTIONS(1343), - [anon_sym_trait] = ACTIONS(1343), - [anon_sym_type] = ACTIONS(1343), - [anon_sym_union] = ACTIONS(1343), - [anon_sym_unsafe] = ACTIONS(1343), - [anon_sym_use] = ACTIONS(1343), - [anon_sym_while] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(1341), - [anon_sym_BANG] = ACTIONS(1341), - [anon_sym_extern] = ACTIONS(1343), - [anon_sym_LT] = ACTIONS(1341), - [anon_sym_COLON_COLON] = ACTIONS(1341), - [anon_sym_AMP] = ACTIONS(1341), - [anon_sym_DOT_DOT] = ACTIONS(1341), - [anon_sym_DASH] = ACTIONS(1341), - [anon_sym_PIPE] = ACTIONS(1341), - [anon_sym_move] = ACTIONS(1343), - [sym_integer_literal] = ACTIONS(1341), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1341), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1346), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym_macro_rules_BANG] = ACTIONS(1344), + [anon_sym_LPAREN] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1344), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_u8] = ACTIONS(1346), + [anon_sym_i8] = ACTIONS(1346), + [anon_sym_u16] = ACTIONS(1346), + [anon_sym_i16] = ACTIONS(1346), + [anon_sym_u32] = ACTIONS(1346), + [anon_sym_i32] = ACTIONS(1346), + [anon_sym_u64] = ACTIONS(1346), + [anon_sym_i64] = ACTIONS(1346), + [anon_sym_u128] = ACTIONS(1346), + [anon_sym_i128] = ACTIONS(1346), + [anon_sym_isize] = ACTIONS(1346), + [anon_sym_usize] = ACTIONS(1346), + [anon_sym_f32] = ACTIONS(1346), + [anon_sym_f64] = ACTIONS(1346), + [anon_sym_bool] = ACTIONS(1346), + [anon_sym_str] = ACTIONS(1346), + [anon_sym_char] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), + [anon_sym_async] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_fn] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_impl] = ACTIONS(1346), + [anon_sym_let] = ACTIONS(1346), + [anon_sym_loop] = ACTIONS(1346), + [anon_sym_match] = ACTIONS(1346), + [anon_sym_mod] = ACTIONS(1346), + [anon_sym_pub] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_trait] = ACTIONS(1346), + [anon_sym_type] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_unsafe] = ACTIONS(1346), + [anon_sym_use] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_POUND] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym_LT] = ACTIONS(1344), + [anon_sym_COLON_COLON] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_DOT_DOT] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1344), + [anon_sym_PIPE] = ACTIONS(1344), + [anon_sym_move] = ACTIONS(1346), + [sym_integer_literal] = ACTIONS(1344), + [aux_sym_string_literal_token1] = ACTIONS(1344), + [sym_char_literal] = ACTIONS(1344), + [anon_sym_true] = ACTIONS(1346), + [anon_sym_false] = ACTIONS(1346), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1343), - [sym_super] = ACTIONS(1343), - [sym_crate] = ACTIONS(1343), - [sym_metavariable] = ACTIONS(1341), - [sym_raw_string_literal] = ACTIONS(1341), - [sym_float_literal] = ACTIONS(1341), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1344), + [sym_raw_string_literal] = ACTIONS(1344), + [sym_float_literal] = ACTIONS(1344), [sym_block_comment] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1345), - [sym_identifier] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_macro_rules_BANG] = ACTIONS(1345), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1345), - [anon_sym_STAR] = ACTIONS(1345), - [anon_sym_u8] = ACTIONS(1347), - [anon_sym_i8] = ACTIONS(1347), - [anon_sym_u16] = ACTIONS(1347), - [anon_sym_i16] = ACTIONS(1347), - [anon_sym_u32] = ACTIONS(1347), - [anon_sym_i32] = ACTIONS(1347), - [anon_sym_u64] = ACTIONS(1347), - [anon_sym_i64] = ACTIONS(1347), - [anon_sym_u128] = ACTIONS(1347), - [anon_sym_i128] = ACTIONS(1347), - [anon_sym_isize] = ACTIONS(1347), - [anon_sym_usize] = ACTIONS(1347), - [anon_sym_f32] = ACTIONS(1347), - [anon_sym_f64] = ACTIONS(1347), - [anon_sym_bool] = ACTIONS(1347), - [anon_sym_str] = ACTIONS(1347), - [anon_sym_char] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1347), - [anon_sym_async] = ACTIONS(1347), - [anon_sym_break] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_continue] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_enum] = ACTIONS(1347), - [anon_sym_fn] = ACTIONS(1347), - [anon_sym_for] = ACTIONS(1347), - [anon_sym_if] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1347), - [anon_sym_let] = ACTIONS(1347), - [anon_sym_loop] = ACTIONS(1347), - [anon_sym_match] = ACTIONS(1347), - [anon_sym_mod] = ACTIONS(1347), - [anon_sym_pub] = ACTIONS(1347), - [anon_sym_return] = ACTIONS(1347), - [anon_sym_static] = ACTIONS(1347), - [anon_sym_struct] = ACTIONS(1347), - [anon_sym_trait] = ACTIONS(1347), - [anon_sym_type] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1347), - [anon_sym_use] = ACTIONS(1347), - [anon_sym_while] = ACTIONS(1347), - [anon_sym_POUND] = ACTIONS(1345), - [anon_sym_BANG] = ACTIONS(1345), - [anon_sym_extern] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1345), - [anon_sym_COLON_COLON] = ACTIONS(1345), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_DOT_DOT] = ACTIONS(1345), - [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1345), - [anon_sym_move] = ACTIONS(1347), - [sym_integer_literal] = ACTIONS(1345), - [aux_sym_string_literal_token1] = ACTIONS(1345), - [sym_char_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1347), - [anon_sym_false] = ACTIONS(1347), + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym_macro_rules_BANG] = ACTIONS(1348), + [anon_sym_LPAREN] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_u8] = ACTIONS(1350), + [anon_sym_i8] = ACTIONS(1350), + [anon_sym_u16] = ACTIONS(1350), + [anon_sym_i16] = ACTIONS(1350), + [anon_sym_u32] = ACTIONS(1350), + [anon_sym_i32] = ACTIONS(1350), + [anon_sym_u64] = ACTIONS(1350), + [anon_sym_i64] = ACTIONS(1350), + [anon_sym_u128] = ACTIONS(1350), + [anon_sym_i128] = ACTIONS(1350), + [anon_sym_isize] = ACTIONS(1350), + [anon_sym_usize] = ACTIONS(1350), + [anon_sym_f32] = ACTIONS(1350), + [anon_sym_f64] = ACTIONS(1350), + [anon_sym_bool] = ACTIONS(1350), + [anon_sym_str] = ACTIONS(1350), + [anon_sym_char] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_break] = ACTIONS(1350), + [anon_sym_const] = ACTIONS(1350), + [anon_sym_continue] = ACTIONS(1350), + [anon_sym_default] = ACTIONS(1350), + [anon_sym_enum] = ACTIONS(1350), + [anon_sym_fn] = ACTIONS(1350), + [anon_sym_for] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1350), + [anon_sym_impl] = ACTIONS(1350), + [anon_sym_let] = ACTIONS(1350), + [anon_sym_loop] = ACTIONS(1350), + [anon_sym_match] = ACTIONS(1350), + [anon_sym_mod] = ACTIONS(1350), + [anon_sym_pub] = ACTIONS(1350), + [anon_sym_return] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1350), + [anon_sym_struct] = ACTIONS(1350), + [anon_sym_trait] = ACTIONS(1350), + [anon_sym_type] = ACTIONS(1350), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_unsafe] = ACTIONS(1350), + [anon_sym_use] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_extern] = ACTIONS(1350), + [anon_sym_LT] = ACTIONS(1348), + [anon_sym_COLON_COLON] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_DOT_DOT] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1348), + [anon_sym_move] = ACTIONS(1350), + [sym_integer_literal] = ACTIONS(1348), + [aux_sym_string_literal_token1] = ACTIONS(1348), + [sym_char_literal] = ACTIONS(1348), + [anon_sym_true] = ACTIONS(1350), + [anon_sym_false] = ACTIONS(1350), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1345), - [sym_raw_string_literal] = ACTIONS(1345), - [sym_float_literal] = ACTIONS(1345), + [sym_self] = ACTIONS(1350), + [sym_super] = ACTIONS(1350), + [sym_crate] = ACTIONS(1350), + [sym_metavariable] = ACTIONS(1348), + [sym_raw_string_literal] = ACTIONS(1348), + [sym_float_literal] = ACTIONS(1348), [sym_block_comment] = ACTIONS(3), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(1349), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_macro_rules_BANG] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_u8] = ACTIONS(1351), - [anon_sym_i8] = ACTIONS(1351), - [anon_sym_u16] = ACTIONS(1351), - [anon_sym_i16] = ACTIONS(1351), - [anon_sym_u32] = ACTIONS(1351), - [anon_sym_i32] = ACTIONS(1351), - [anon_sym_u64] = ACTIONS(1351), - [anon_sym_i64] = ACTIONS(1351), - [anon_sym_u128] = ACTIONS(1351), - [anon_sym_i128] = ACTIONS(1351), - [anon_sym_isize] = ACTIONS(1351), - [anon_sym_usize] = ACTIONS(1351), - [anon_sym_f32] = ACTIONS(1351), - [anon_sym_f64] = ACTIONS(1351), - [anon_sym_bool] = ACTIONS(1351), - [anon_sym_str] = ACTIONS(1351), - [anon_sym_char] = ACTIONS(1351), - [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_async] = ACTIONS(1351), - [anon_sym_break] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_continue] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_enum] = ACTIONS(1351), - [anon_sym_fn] = ACTIONS(1351), - [anon_sym_for] = ACTIONS(1351), - [anon_sym_if] = ACTIONS(1351), - [anon_sym_impl] = ACTIONS(1351), - [anon_sym_let] = ACTIONS(1351), - [anon_sym_loop] = ACTIONS(1351), - [anon_sym_match] = ACTIONS(1351), - [anon_sym_mod] = ACTIONS(1351), - [anon_sym_pub] = ACTIONS(1351), - [anon_sym_return] = ACTIONS(1351), - [anon_sym_static] = ACTIONS(1351), - [anon_sym_struct] = ACTIONS(1351), - [anon_sym_trait] = ACTIONS(1351), - [anon_sym_type] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_unsafe] = ACTIONS(1351), - [anon_sym_use] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1351), - [anon_sym_POUND] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1349), - [anon_sym_extern] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1349), - [anon_sym_move] = ACTIONS(1351), - [sym_integer_literal] = ACTIONS(1349), - [aux_sym_string_literal_token1] = ACTIONS(1349), - [sym_char_literal] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), + [ts_builtin_sym_end] = ACTIONS(1352), + [sym_identifier] = ACTIONS(1354), + [anon_sym_SEMI] = ACTIONS(1352), + [anon_sym_macro_rules_BANG] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_u8] = ACTIONS(1354), + [anon_sym_i8] = ACTIONS(1354), + [anon_sym_u16] = ACTIONS(1354), + [anon_sym_i16] = ACTIONS(1354), + [anon_sym_u32] = ACTIONS(1354), + [anon_sym_i32] = ACTIONS(1354), + [anon_sym_u64] = ACTIONS(1354), + [anon_sym_i64] = ACTIONS(1354), + [anon_sym_u128] = ACTIONS(1354), + [anon_sym_i128] = ACTIONS(1354), + [anon_sym_isize] = ACTIONS(1354), + [anon_sym_usize] = ACTIONS(1354), + [anon_sym_f32] = ACTIONS(1354), + [anon_sym_f64] = ACTIONS(1354), + [anon_sym_bool] = ACTIONS(1354), + [anon_sym_str] = ACTIONS(1354), + [anon_sym_char] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [anon_sym_async] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_fn] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_impl] = ACTIONS(1354), + [anon_sym_let] = ACTIONS(1354), + [anon_sym_loop] = ACTIONS(1354), + [anon_sym_match] = ACTIONS(1354), + [anon_sym_mod] = ACTIONS(1354), + [anon_sym_pub] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_trait] = ACTIONS(1354), + [anon_sym_type] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_unsafe] = ACTIONS(1354), + [anon_sym_use] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_COLON_COLON] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1354), + [sym_integer_literal] = ACTIONS(1352), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1352), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1349), - [sym_raw_string_literal] = ACTIONS(1349), - [sym_float_literal] = ACTIONS(1349), + [sym_self] = ACTIONS(1354), + [sym_super] = ACTIONS(1354), + [sym_crate] = ACTIONS(1354), + [sym_metavariable] = ACTIONS(1352), + [sym_raw_string_literal] = ACTIONS(1352), + [sym_float_literal] = ACTIONS(1352), [sym_block_comment] = ACTIONS(3), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_macro_rules_BANG] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_STAR] = ACTIONS(1353), - [anon_sym_u8] = ACTIONS(1355), - [anon_sym_i8] = ACTIONS(1355), - [anon_sym_u16] = ACTIONS(1355), - [anon_sym_i16] = ACTIONS(1355), - [anon_sym_u32] = ACTIONS(1355), - [anon_sym_i32] = ACTIONS(1355), - [anon_sym_u64] = ACTIONS(1355), - [anon_sym_i64] = ACTIONS(1355), - [anon_sym_u128] = ACTIONS(1355), - [anon_sym_i128] = ACTIONS(1355), - [anon_sym_isize] = ACTIONS(1355), - [anon_sym_usize] = ACTIONS(1355), - [anon_sym_f32] = ACTIONS(1355), - [anon_sym_f64] = ACTIONS(1355), - [anon_sym_bool] = ACTIONS(1355), - [anon_sym_str] = ACTIONS(1355), - [anon_sym_char] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_fn] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1355), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_loop] = ACTIONS(1355), - [anon_sym_match] = ACTIONS(1355), - [anon_sym_mod] = ACTIONS(1355), - [anon_sym_pub] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_trait] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1355), - [anon_sym_use] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_POUND] = ACTIONS(1353), - [anon_sym_BANG] = ACTIONS(1353), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_COLON_COLON] = ACTIONS(1353), - [anon_sym_AMP] = ACTIONS(1353), - [anon_sym_DOT_DOT] = ACTIONS(1353), - [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_PIPE] = ACTIONS(1353), - [anon_sym_move] = ACTIONS(1355), - [sym_integer_literal] = ACTIONS(1353), - [aux_sym_string_literal_token1] = ACTIONS(1353), - [sym_char_literal] = ACTIONS(1353), - [anon_sym_true] = ACTIONS(1355), - [anon_sym_false] = ACTIONS(1355), + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_macro_rules_BANG] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_fn] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_impl] = ACTIONS(1358), + [anon_sym_let] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_mod] = ACTIONS(1358), + [anon_sym_pub] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_trait] = ACTIONS(1358), + [anon_sym_type] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_use] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_POUND] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_COLON_COLON] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1356), + [aux_sym_string_literal_token1] = ACTIONS(1356), + [sym_char_literal] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1355), - [sym_super] = ACTIONS(1355), - [sym_crate] = ACTIONS(1355), - [sym_metavariable] = ACTIONS(1353), - [sym_raw_string_literal] = ACTIONS(1353), - [sym_float_literal] = ACTIONS(1353), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1356), + [sym_raw_string_literal] = ACTIONS(1356), + [sym_float_literal] = ACTIONS(1356), [sym_block_comment] = ACTIONS(3), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(1357), - [sym_identifier] = ACTIONS(1359), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_macro_rules_BANG] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_u8] = ACTIONS(1359), - [anon_sym_i8] = ACTIONS(1359), - [anon_sym_u16] = ACTIONS(1359), - [anon_sym_i16] = ACTIONS(1359), - [anon_sym_u32] = ACTIONS(1359), - [anon_sym_i32] = ACTIONS(1359), - [anon_sym_u64] = ACTIONS(1359), - [anon_sym_i64] = ACTIONS(1359), - [anon_sym_u128] = ACTIONS(1359), - [anon_sym_i128] = ACTIONS(1359), - [anon_sym_isize] = ACTIONS(1359), - [anon_sym_usize] = ACTIONS(1359), - [anon_sym_f32] = ACTIONS(1359), - [anon_sym_f64] = ACTIONS(1359), - [anon_sym_bool] = ACTIONS(1359), - [anon_sym_str] = ACTIONS(1359), - [anon_sym_char] = ACTIONS(1359), - [anon_sym_SQUOTE] = ACTIONS(1359), - [anon_sym_async] = ACTIONS(1359), - [anon_sym_break] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_continue] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_enum] = ACTIONS(1359), - [anon_sym_fn] = ACTIONS(1359), - [anon_sym_for] = ACTIONS(1359), - [anon_sym_if] = ACTIONS(1359), - [anon_sym_impl] = ACTIONS(1359), - [anon_sym_let] = ACTIONS(1359), - [anon_sym_loop] = ACTIONS(1359), - [anon_sym_match] = ACTIONS(1359), - [anon_sym_mod] = ACTIONS(1359), - [anon_sym_pub] = ACTIONS(1359), - [anon_sym_return] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1359), - [anon_sym_struct] = ACTIONS(1359), - [anon_sym_trait] = ACTIONS(1359), - [anon_sym_type] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_unsafe] = ACTIONS(1359), - [anon_sym_use] = ACTIONS(1359), - [anon_sym_while] = ACTIONS(1359), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_move] = ACTIONS(1359), - [sym_integer_literal] = ACTIONS(1357), - [aux_sym_string_literal_token1] = ACTIONS(1357), - [sym_char_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1359), - [anon_sym_false] = ACTIONS(1359), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_macro_rules_BANG] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1362), + [anon_sym_i8] = ACTIONS(1362), + [anon_sym_u16] = ACTIONS(1362), + [anon_sym_i16] = ACTIONS(1362), + [anon_sym_u32] = ACTIONS(1362), + [anon_sym_i32] = ACTIONS(1362), + [anon_sym_u64] = ACTIONS(1362), + [anon_sym_i64] = ACTIONS(1362), + [anon_sym_u128] = ACTIONS(1362), + [anon_sym_i128] = ACTIONS(1362), + [anon_sym_isize] = ACTIONS(1362), + [anon_sym_usize] = ACTIONS(1362), + [anon_sym_f32] = ACTIONS(1362), + [anon_sym_f64] = ACTIONS(1362), + [anon_sym_bool] = ACTIONS(1362), + [anon_sym_str] = ACTIONS(1362), + [anon_sym_char] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [anon_sym_async] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_fn] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_impl] = ACTIONS(1362), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_loop] = ACTIONS(1362), + [anon_sym_match] = ACTIONS(1362), + [anon_sym_mod] = ACTIONS(1362), + [anon_sym_pub] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_trait] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_unsafe] = ACTIONS(1362), + [anon_sym_use] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_move] = ACTIONS(1362), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1357), - [sym_raw_string_literal] = ACTIONS(1357), - [sym_float_literal] = ACTIONS(1357), + [sym_self] = ACTIONS(1362), + [sym_super] = ACTIONS(1362), + [sym_crate] = ACTIONS(1362), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), [sym_block_comment] = ACTIONS(3), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(1361), - [sym_identifier] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_macro_rules_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_STAR] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1363), - [anon_sym_i8] = ACTIONS(1363), - [anon_sym_u16] = ACTIONS(1363), - [anon_sym_i16] = ACTIONS(1363), - [anon_sym_u32] = ACTIONS(1363), - [anon_sym_i32] = ACTIONS(1363), - [anon_sym_u64] = ACTIONS(1363), - [anon_sym_i64] = ACTIONS(1363), - [anon_sym_u128] = ACTIONS(1363), - [anon_sym_i128] = ACTIONS(1363), - [anon_sym_isize] = ACTIONS(1363), - [anon_sym_usize] = ACTIONS(1363), - [anon_sym_f32] = ACTIONS(1363), - [anon_sym_f64] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_str] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_impl] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(1363), - [anon_sym_loop] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_mod] = ACTIONS(1363), - [anon_sym_pub] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_trait] = ACTIONS(1363), - [anon_sym_type] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_unsafe] = ACTIONS(1363), - [anon_sym_use] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_POUND] = ACTIONS(1361), - [anon_sym_BANG] = ACTIONS(1361), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_AMP] = ACTIONS(1361), - [anon_sym_DOT_DOT] = ACTIONS(1361), - [anon_sym_DASH] = ACTIONS(1361), - [anon_sym_PIPE] = ACTIONS(1361), - [anon_sym_move] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1361), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1361), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_macro_rules_BANG] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_u8] = ACTIONS(1366), + [anon_sym_i8] = ACTIONS(1366), + [anon_sym_u16] = ACTIONS(1366), + [anon_sym_i16] = ACTIONS(1366), + [anon_sym_u32] = ACTIONS(1366), + [anon_sym_i32] = ACTIONS(1366), + [anon_sym_u64] = ACTIONS(1366), + [anon_sym_i64] = ACTIONS(1366), + [anon_sym_u128] = ACTIONS(1366), + [anon_sym_i128] = ACTIONS(1366), + [anon_sym_isize] = ACTIONS(1366), + [anon_sym_usize] = ACTIONS(1366), + [anon_sym_f32] = ACTIONS(1366), + [anon_sym_f64] = ACTIONS(1366), + [anon_sym_bool] = ACTIONS(1366), + [anon_sym_str] = ACTIONS(1366), + [anon_sym_char] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [anon_sym_async] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_fn] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_impl] = ACTIONS(1366), + [anon_sym_let] = ACTIONS(1366), + [anon_sym_loop] = ACTIONS(1366), + [anon_sym_match] = ACTIONS(1366), + [anon_sym_mod] = ACTIONS(1366), + [anon_sym_pub] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_trait] = ACTIONS(1366), + [anon_sym_type] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_unsafe] = ACTIONS(1366), + [anon_sym_use] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_COLON_COLON] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_move] = ACTIONS(1366), + [sym_integer_literal] = ACTIONS(1364), + [aux_sym_string_literal_token1] = ACTIONS(1364), + [sym_char_literal] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1363), - [sym_super] = ACTIONS(1363), - [sym_crate] = ACTIONS(1363), - [sym_metavariable] = ACTIONS(1361), - [sym_raw_string_literal] = ACTIONS(1361), - [sym_float_literal] = ACTIONS(1361), + [sym_self] = ACTIONS(1366), + [sym_super] = ACTIONS(1366), + [sym_crate] = ACTIONS(1366), + [sym_metavariable] = ACTIONS(1364), + [sym_raw_string_literal] = ACTIONS(1364), + [sym_float_literal] = ACTIONS(1364), [sym_block_comment] = ACTIONS(3), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(1365), - [sym_identifier] = ACTIONS(1367), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_macro_rules_BANG] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1365), - [anon_sym_LBRACE] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_u8] = ACTIONS(1367), - [anon_sym_i8] = ACTIONS(1367), - [anon_sym_u16] = ACTIONS(1367), - [anon_sym_i16] = ACTIONS(1367), - [anon_sym_u32] = ACTIONS(1367), - [anon_sym_i32] = ACTIONS(1367), - [anon_sym_u64] = ACTIONS(1367), - [anon_sym_i64] = ACTIONS(1367), - [anon_sym_u128] = ACTIONS(1367), - [anon_sym_i128] = ACTIONS(1367), - [anon_sym_isize] = ACTIONS(1367), - [anon_sym_usize] = ACTIONS(1367), - [anon_sym_f32] = ACTIONS(1367), - [anon_sym_f64] = ACTIONS(1367), - [anon_sym_bool] = ACTIONS(1367), - [anon_sym_str] = ACTIONS(1367), - [anon_sym_char] = ACTIONS(1367), - [anon_sym_SQUOTE] = ACTIONS(1367), - [anon_sym_async] = ACTIONS(1367), - [anon_sym_break] = ACTIONS(1367), - [anon_sym_const] = ACTIONS(1367), - [anon_sym_continue] = ACTIONS(1367), - [anon_sym_default] = ACTIONS(1367), - [anon_sym_enum] = ACTIONS(1367), - [anon_sym_fn] = ACTIONS(1367), - [anon_sym_for] = ACTIONS(1367), - [anon_sym_if] = ACTIONS(1367), - [anon_sym_impl] = ACTIONS(1367), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_loop] = ACTIONS(1367), - [anon_sym_match] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_pub] = ACTIONS(1367), - [anon_sym_return] = ACTIONS(1367), - [anon_sym_static] = ACTIONS(1367), - [anon_sym_struct] = ACTIONS(1367), - [anon_sym_trait] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_union] = ACTIONS(1367), - [anon_sym_unsafe] = ACTIONS(1367), - [anon_sym_use] = ACTIONS(1367), - [anon_sym_while] = ACTIONS(1367), - [anon_sym_POUND] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1367), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1367), - [sym_integer_literal] = ACTIONS(1365), - [aux_sym_string_literal_token1] = ACTIONS(1365), - [sym_char_literal] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(1367), - [anon_sym_false] = ACTIONS(1367), + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1370), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_macro_rules_BANG] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_u8] = ACTIONS(1370), + [anon_sym_i8] = ACTIONS(1370), + [anon_sym_u16] = ACTIONS(1370), + [anon_sym_i16] = ACTIONS(1370), + [anon_sym_u32] = ACTIONS(1370), + [anon_sym_i32] = ACTIONS(1370), + [anon_sym_u64] = ACTIONS(1370), + [anon_sym_i64] = ACTIONS(1370), + [anon_sym_u128] = ACTIONS(1370), + [anon_sym_i128] = ACTIONS(1370), + [anon_sym_isize] = ACTIONS(1370), + [anon_sym_usize] = ACTIONS(1370), + [anon_sym_f32] = ACTIONS(1370), + [anon_sym_f64] = ACTIONS(1370), + [anon_sym_bool] = ACTIONS(1370), + [anon_sym_str] = ACTIONS(1370), + [anon_sym_char] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [anon_sym_async] = ACTIONS(1370), + [anon_sym_break] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(1370), + [anon_sym_continue] = ACTIONS(1370), + [anon_sym_default] = ACTIONS(1370), + [anon_sym_enum] = ACTIONS(1370), + [anon_sym_fn] = ACTIONS(1370), + [anon_sym_for] = ACTIONS(1370), + [anon_sym_if] = ACTIONS(1370), + [anon_sym_impl] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1370), + [anon_sym_loop] = ACTIONS(1370), + [anon_sym_match] = ACTIONS(1370), + [anon_sym_mod] = ACTIONS(1370), + [anon_sym_pub] = ACTIONS(1370), + [anon_sym_return] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_struct] = ACTIONS(1370), + [anon_sym_trait] = ACTIONS(1370), + [anon_sym_type] = ACTIONS(1370), + [anon_sym_union] = ACTIONS(1370), + [anon_sym_unsafe] = ACTIONS(1370), + [anon_sym_use] = ACTIONS(1370), + [anon_sym_while] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_extern] = ACTIONS(1370), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_COLON_COLON] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_move] = ACTIONS(1370), + [sym_integer_literal] = ACTIONS(1368), + [aux_sym_string_literal_token1] = ACTIONS(1368), + [sym_char_literal] = ACTIONS(1368), + [anon_sym_true] = ACTIONS(1370), + [anon_sym_false] = ACTIONS(1370), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1367), - [sym_super] = ACTIONS(1367), - [sym_crate] = ACTIONS(1367), - [sym_metavariable] = ACTIONS(1365), - [sym_raw_string_literal] = ACTIONS(1365), - [sym_float_literal] = ACTIONS(1365), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1370), + [sym_crate] = ACTIONS(1370), + [sym_metavariable] = ACTIONS(1368), + [sym_raw_string_literal] = ACTIONS(1368), + [sym_float_literal] = ACTIONS(1368), [sym_block_comment] = ACTIONS(3), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(1369), - [sym_identifier] = ACTIONS(1371), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_macro_rules_BANG] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1369), - [anon_sym_RBRACE] = ACTIONS(1369), - [anon_sym_LBRACK] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_u8] = ACTIONS(1371), - [anon_sym_i8] = ACTIONS(1371), - [anon_sym_u16] = ACTIONS(1371), - [anon_sym_i16] = ACTIONS(1371), - [anon_sym_u32] = ACTIONS(1371), - [anon_sym_i32] = ACTIONS(1371), - [anon_sym_u64] = ACTIONS(1371), - [anon_sym_i64] = ACTIONS(1371), - [anon_sym_u128] = ACTIONS(1371), - [anon_sym_i128] = ACTIONS(1371), - [anon_sym_isize] = ACTIONS(1371), - [anon_sym_usize] = ACTIONS(1371), - [anon_sym_f32] = ACTIONS(1371), - [anon_sym_f64] = ACTIONS(1371), - [anon_sym_bool] = ACTIONS(1371), - [anon_sym_str] = ACTIONS(1371), - [anon_sym_char] = ACTIONS(1371), - [anon_sym_SQUOTE] = ACTIONS(1371), - [anon_sym_async] = ACTIONS(1371), - [anon_sym_break] = ACTIONS(1371), - [anon_sym_const] = ACTIONS(1371), - [anon_sym_continue] = ACTIONS(1371), - [anon_sym_default] = ACTIONS(1371), - [anon_sym_enum] = ACTIONS(1371), - [anon_sym_fn] = ACTIONS(1371), - [anon_sym_for] = ACTIONS(1371), - [anon_sym_if] = ACTIONS(1371), - [anon_sym_impl] = ACTIONS(1371), - [anon_sym_let] = ACTIONS(1371), - [anon_sym_loop] = ACTIONS(1371), - [anon_sym_match] = ACTIONS(1371), - [anon_sym_mod] = ACTIONS(1371), - [anon_sym_pub] = ACTIONS(1371), - [anon_sym_return] = ACTIONS(1371), - [anon_sym_static] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1371), - [anon_sym_trait] = ACTIONS(1371), - [anon_sym_type] = ACTIONS(1371), - [anon_sym_union] = ACTIONS(1371), - [anon_sym_unsafe] = ACTIONS(1371), - [anon_sym_use] = ACTIONS(1371), - [anon_sym_while] = ACTIONS(1371), - [anon_sym_POUND] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_extern] = ACTIONS(1371), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_COLON_COLON] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_move] = ACTIONS(1371), - [sym_integer_literal] = ACTIONS(1369), - [aux_sym_string_literal_token1] = ACTIONS(1369), - [sym_char_literal] = ACTIONS(1369), - [anon_sym_true] = ACTIONS(1371), - [anon_sym_false] = ACTIONS(1371), + [ts_builtin_sym_end] = ACTIONS(1372), + [sym_identifier] = ACTIONS(1374), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_macro_rules_BANG] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_u8] = ACTIONS(1374), + [anon_sym_i8] = ACTIONS(1374), + [anon_sym_u16] = ACTIONS(1374), + [anon_sym_i16] = ACTIONS(1374), + [anon_sym_u32] = ACTIONS(1374), + [anon_sym_i32] = ACTIONS(1374), + [anon_sym_u64] = ACTIONS(1374), + [anon_sym_i64] = ACTIONS(1374), + [anon_sym_u128] = ACTIONS(1374), + [anon_sym_i128] = ACTIONS(1374), + [anon_sym_isize] = ACTIONS(1374), + [anon_sym_usize] = ACTIONS(1374), + [anon_sym_f32] = ACTIONS(1374), + [anon_sym_f64] = ACTIONS(1374), + [anon_sym_bool] = ACTIONS(1374), + [anon_sym_str] = ACTIONS(1374), + [anon_sym_char] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [anon_sym_async] = ACTIONS(1374), + [anon_sym_break] = ACTIONS(1374), + [anon_sym_const] = ACTIONS(1374), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_default] = ACTIONS(1374), + [anon_sym_enum] = ACTIONS(1374), + [anon_sym_fn] = ACTIONS(1374), + [anon_sym_for] = ACTIONS(1374), + [anon_sym_if] = ACTIONS(1374), + [anon_sym_impl] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1374), + [anon_sym_loop] = ACTIONS(1374), + [anon_sym_match] = ACTIONS(1374), + [anon_sym_mod] = ACTIONS(1374), + [anon_sym_pub] = ACTIONS(1374), + [anon_sym_return] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_struct] = ACTIONS(1374), + [anon_sym_trait] = ACTIONS(1374), + [anon_sym_type] = ACTIONS(1374), + [anon_sym_union] = ACTIONS(1374), + [anon_sym_unsafe] = ACTIONS(1374), + [anon_sym_use] = ACTIONS(1374), + [anon_sym_while] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1372), + [anon_sym_BANG] = ACTIONS(1372), + [anon_sym_extern] = ACTIONS(1374), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_COLON_COLON] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_move] = ACTIONS(1374), + [sym_integer_literal] = ACTIONS(1372), + [aux_sym_string_literal_token1] = ACTIONS(1372), + [sym_char_literal] = ACTIONS(1372), + [anon_sym_true] = ACTIONS(1374), + [anon_sym_false] = ACTIONS(1374), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1371), - [sym_super] = ACTIONS(1371), - [sym_crate] = ACTIONS(1371), - [sym_metavariable] = ACTIONS(1369), - [sym_raw_string_literal] = ACTIONS(1369), - [sym_float_literal] = ACTIONS(1369), + [sym_self] = ACTIONS(1374), + [sym_super] = ACTIONS(1374), + [sym_crate] = ACTIONS(1374), + [sym_metavariable] = ACTIONS(1372), + [sym_raw_string_literal] = ACTIONS(1372), + [sym_float_literal] = ACTIONS(1372), [sym_block_comment] = ACTIONS(3), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(1373), - [sym_identifier] = ACTIONS(1375), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_macro_rules_BANG] = ACTIONS(1373), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(1373), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_SQUOTE] = ACTIONS(1375), - [anon_sym_async] = ACTIONS(1375), - [anon_sym_break] = ACTIONS(1375), - [anon_sym_const] = ACTIONS(1375), - [anon_sym_continue] = ACTIONS(1375), - [anon_sym_default] = ACTIONS(1375), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_fn] = ACTIONS(1375), - [anon_sym_for] = ACTIONS(1375), - [anon_sym_if] = ACTIONS(1375), - [anon_sym_impl] = ACTIONS(1375), - [anon_sym_let] = ACTIONS(1375), - [anon_sym_loop] = ACTIONS(1375), - [anon_sym_match] = ACTIONS(1375), - [anon_sym_mod] = ACTIONS(1375), - [anon_sym_pub] = ACTIONS(1375), - [anon_sym_return] = ACTIONS(1375), - [anon_sym_static] = ACTIONS(1375), - [anon_sym_struct] = ACTIONS(1375), - [anon_sym_trait] = ACTIONS(1375), - [anon_sym_type] = ACTIONS(1375), - [anon_sym_union] = ACTIONS(1375), - [anon_sym_unsafe] = ACTIONS(1375), - [anon_sym_use] = ACTIONS(1375), - [anon_sym_while] = ACTIONS(1375), - [anon_sym_POUND] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_extern] = ACTIONS(1375), - [anon_sym_LT] = ACTIONS(1373), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_DOT_DOT] = ACTIONS(1373), - [anon_sym_DASH] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1373), - [anon_sym_move] = ACTIONS(1375), - [sym_integer_literal] = ACTIONS(1373), - [aux_sym_string_literal_token1] = ACTIONS(1373), - [sym_char_literal] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(1375), - [anon_sym_false] = ACTIONS(1375), + [ts_builtin_sym_end] = ACTIONS(1376), + [sym_identifier] = ACTIONS(1378), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_macro_rules_BANG] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_u8] = ACTIONS(1378), + [anon_sym_i8] = ACTIONS(1378), + [anon_sym_u16] = ACTIONS(1378), + [anon_sym_i16] = ACTIONS(1378), + [anon_sym_u32] = ACTIONS(1378), + [anon_sym_i32] = ACTIONS(1378), + [anon_sym_u64] = ACTIONS(1378), + [anon_sym_i64] = ACTIONS(1378), + [anon_sym_u128] = ACTIONS(1378), + [anon_sym_i128] = ACTIONS(1378), + [anon_sym_isize] = ACTIONS(1378), + [anon_sym_usize] = ACTIONS(1378), + [anon_sym_f32] = ACTIONS(1378), + [anon_sym_f64] = ACTIONS(1378), + [anon_sym_bool] = ACTIONS(1378), + [anon_sym_str] = ACTIONS(1378), + [anon_sym_char] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_break] = ACTIONS(1378), + [anon_sym_const] = ACTIONS(1378), + [anon_sym_continue] = ACTIONS(1378), + [anon_sym_default] = ACTIONS(1378), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_fn] = ACTIONS(1378), + [anon_sym_for] = ACTIONS(1378), + [anon_sym_if] = ACTIONS(1378), + [anon_sym_impl] = ACTIONS(1378), + [anon_sym_let] = ACTIONS(1378), + [anon_sym_loop] = ACTIONS(1378), + [anon_sym_match] = ACTIONS(1378), + [anon_sym_mod] = ACTIONS(1378), + [anon_sym_pub] = ACTIONS(1378), + [anon_sym_return] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_struct] = ACTIONS(1378), + [anon_sym_trait] = ACTIONS(1378), + [anon_sym_type] = ACTIONS(1378), + [anon_sym_union] = ACTIONS(1378), + [anon_sym_unsafe] = ACTIONS(1378), + [anon_sym_use] = ACTIONS(1378), + [anon_sym_while] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1376), + [anon_sym_BANG] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1378), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_COLON_COLON] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_move] = ACTIONS(1378), + [sym_integer_literal] = ACTIONS(1376), + [aux_sym_string_literal_token1] = ACTIONS(1376), + [sym_char_literal] = ACTIONS(1376), + [anon_sym_true] = ACTIONS(1378), + [anon_sym_false] = ACTIONS(1378), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1375), - [sym_super] = ACTIONS(1375), - [sym_crate] = ACTIONS(1375), - [sym_metavariable] = ACTIONS(1373), - [sym_raw_string_literal] = ACTIONS(1373), - [sym_float_literal] = ACTIONS(1373), + [sym_self] = ACTIONS(1378), + [sym_super] = ACTIONS(1378), + [sym_crate] = ACTIONS(1378), + [sym_metavariable] = ACTIONS(1376), + [sym_raw_string_literal] = ACTIONS(1376), + [sym_float_literal] = ACTIONS(1376), [sym_block_comment] = ACTIONS(3), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(1377), - [sym_identifier] = ACTIONS(1379), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_macro_rules_BANG] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1377), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_RBRACE] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1377), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_u8] = ACTIONS(1379), - [anon_sym_i8] = ACTIONS(1379), - [anon_sym_u16] = ACTIONS(1379), - [anon_sym_i16] = ACTIONS(1379), - [anon_sym_u32] = ACTIONS(1379), - [anon_sym_i32] = ACTIONS(1379), - [anon_sym_u64] = ACTIONS(1379), - [anon_sym_i64] = ACTIONS(1379), - [anon_sym_u128] = ACTIONS(1379), - [anon_sym_i128] = ACTIONS(1379), - [anon_sym_isize] = ACTIONS(1379), - [anon_sym_usize] = ACTIONS(1379), - [anon_sym_f32] = ACTIONS(1379), - [anon_sym_f64] = ACTIONS(1379), - [anon_sym_bool] = ACTIONS(1379), - [anon_sym_str] = ACTIONS(1379), - [anon_sym_char] = ACTIONS(1379), - [anon_sym_SQUOTE] = ACTIONS(1379), - [anon_sym_async] = 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_while] = ACTIONS(1379), - [anon_sym_POUND] = ACTIONS(1377), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_extern] = ACTIONS(1379), - [anon_sym_LT] = ACTIONS(1377), - [anon_sym_COLON_COLON] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_DOT_DOT] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_move] = ACTIONS(1379), - [sym_integer_literal] = ACTIONS(1377), - [aux_sym_string_literal_token1] = ACTIONS(1377), - [sym_char_literal] = ACTIONS(1377), - [anon_sym_true] = ACTIONS(1379), - [anon_sym_false] = ACTIONS(1379), + [ts_builtin_sym_end] = ACTIONS(1380), + [sym_identifier] = ACTIONS(1382), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_macro_rules_BANG] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_u8] = ACTIONS(1382), + [anon_sym_i8] = ACTIONS(1382), + [anon_sym_u16] = ACTIONS(1382), + [anon_sym_i16] = ACTIONS(1382), + [anon_sym_u32] = ACTIONS(1382), + [anon_sym_i32] = ACTIONS(1382), + [anon_sym_u64] = ACTIONS(1382), + [anon_sym_i64] = ACTIONS(1382), + [anon_sym_u128] = ACTIONS(1382), + [anon_sym_i128] = ACTIONS(1382), + [anon_sym_isize] = ACTIONS(1382), + [anon_sym_usize] = ACTIONS(1382), + [anon_sym_f32] = ACTIONS(1382), + [anon_sym_f64] = ACTIONS(1382), + [anon_sym_bool] = ACTIONS(1382), + [anon_sym_str] = ACTIONS(1382), + [anon_sym_char] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [anon_sym_async] = ACTIONS(1382), + [anon_sym_break] = ACTIONS(1382), + [anon_sym_const] = ACTIONS(1382), + [anon_sym_continue] = ACTIONS(1382), + [anon_sym_default] = ACTIONS(1382), + [anon_sym_enum] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1382), + [anon_sym_for] = ACTIONS(1382), + [anon_sym_if] = ACTIONS(1382), + [anon_sym_impl] = ACTIONS(1382), + [anon_sym_let] = ACTIONS(1382), + [anon_sym_loop] = ACTIONS(1382), + [anon_sym_match] = ACTIONS(1382), + [anon_sym_mod] = ACTIONS(1382), + [anon_sym_pub] = ACTIONS(1382), + [anon_sym_return] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_struct] = ACTIONS(1382), + [anon_sym_trait] = ACTIONS(1382), + [anon_sym_type] = ACTIONS(1382), + [anon_sym_union] = ACTIONS(1382), + [anon_sym_unsafe] = ACTIONS(1382), + [anon_sym_use] = ACTIONS(1382), + [anon_sym_while] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1382), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_COLON_COLON] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_move] = ACTIONS(1382), + [sym_integer_literal] = ACTIONS(1380), + [aux_sym_string_literal_token1] = ACTIONS(1380), + [sym_char_literal] = ACTIONS(1380), + [anon_sym_true] = ACTIONS(1382), + [anon_sym_false] = ACTIONS(1382), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1379), - [sym_super] = ACTIONS(1379), - [sym_crate] = ACTIONS(1379), - [sym_metavariable] = ACTIONS(1377), - [sym_raw_string_literal] = ACTIONS(1377), - [sym_float_literal] = ACTIONS(1377), + [sym_self] = ACTIONS(1382), + [sym_super] = ACTIONS(1382), + [sym_crate] = ACTIONS(1382), + [sym_metavariable] = ACTIONS(1380), + [sym_raw_string_literal] = ACTIONS(1380), + [sym_float_literal] = ACTIONS(1380), [sym_block_comment] = ACTIONS(3), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(1381), - [sym_identifier] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_macro_rules_BANG] = ACTIONS(1381), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_STAR] = ACTIONS(1381), - [anon_sym_u8] = ACTIONS(1383), - [anon_sym_i8] = ACTIONS(1383), - [anon_sym_u16] = ACTIONS(1383), - [anon_sym_i16] = ACTIONS(1383), - [anon_sym_u32] = ACTIONS(1383), - [anon_sym_i32] = ACTIONS(1383), - [anon_sym_u64] = ACTIONS(1383), - [anon_sym_i64] = ACTIONS(1383), - [anon_sym_u128] = ACTIONS(1383), - [anon_sym_i128] = ACTIONS(1383), - [anon_sym_isize] = ACTIONS(1383), - [anon_sym_usize] = ACTIONS(1383), - [anon_sym_f32] = ACTIONS(1383), - [anon_sym_f64] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_str] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1383), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_break] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_continue] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_enum] = ACTIONS(1383), - [anon_sym_fn] = ACTIONS(1383), - [anon_sym_for] = ACTIONS(1383), - [anon_sym_if] = ACTIONS(1383), - [anon_sym_impl] = ACTIONS(1383), - [anon_sym_let] = ACTIONS(1383), - [anon_sym_loop] = ACTIONS(1383), - [anon_sym_match] = ACTIONS(1383), - [anon_sym_mod] = ACTIONS(1383), - [anon_sym_pub] = ACTIONS(1383), - [anon_sym_return] = ACTIONS(1383), - [anon_sym_static] = ACTIONS(1383), - [anon_sym_struct] = ACTIONS(1383), - [anon_sym_trait] = ACTIONS(1383), - [anon_sym_type] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_unsafe] = ACTIONS(1383), - [anon_sym_use] = ACTIONS(1383), - [anon_sym_while] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1381), - [anon_sym_BANG] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(1381), - [anon_sym_AMP] = ACTIONS(1381), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_DASH] = ACTIONS(1381), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_move] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1381), - [aux_sym_string_literal_token1] = ACTIONS(1381), - [sym_char_literal] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), + [ts_builtin_sym_end] = ACTIONS(1384), + [sym_identifier] = ACTIONS(1386), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_macro_rules_BANG] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_u8] = ACTIONS(1386), + [anon_sym_i8] = ACTIONS(1386), + [anon_sym_u16] = ACTIONS(1386), + [anon_sym_i16] = ACTIONS(1386), + [anon_sym_u32] = ACTIONS(1386), + [anon_sym_i32] = ACTIONS(1386), + [anon_sym_u64] = ACTIONS(1386), + [anon_sym_i64] = ACTIONS(1386), + [anon_sym_u128] = ACTIONS(1386), + [anon_sym_i128] = ACTIONS(1386), + [anon_sym_isize] = ACTIONS(1386), + [anon_sym_usize] = ACTIONS(1386), + [anon_sym_f32] = ACTIONS(1386), + [anon_sym_f64] = ACTIONS(1386), + [anon_sym_bool] = ACTIONS(1386), + [anon_sym_str] = ACTIONS(1386), + [anon_sym_char] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [anon_sym_async] = ACTIONS(1386), + [anon_sym_break] = ACTIONS(1386), + [anon_sym_const] = ACTIONS(1386), + [anon_sym_continue] = ACTIONS(1386), + [anon_sym_default] = ACTIONS(1386), + [anon_sym_enum] = ACTIONS(1386), + [anon_sym_fn] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_if] = ACTIONS(1386), + [anon_sym_impl] = ACTIONS(1386), + [anon_sym_let] = ACTIONS(1386), + [anon_sym_loop] = ACTIONS(1386), + [anon_sym_match] = ACTIONS(1386), + [anon_sym_mod] = ACTIONS(1386), + [anon_sym_pub] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_struct] = ACTIONS(1386), + [anon_sym_trait] = ACTIONS(1386), + [anon_sym_type] = ACTIONS(1386), + [anon_sym_union] = ACTIONS(1386), + [anon_sym_unsafe] = ACTIONS(1386), + [anon_sym_use] = ACTIONS(1386), + [anon_sym_while] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_COLON_COLON] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1386), + [sym_integer_literal] = ACTIONS(1384), + [aux_sym_string_literal_token1] = ACTIONS(1384), + [sym_char_literal] = ACTIONS(1384), + [anon_sym_true] = ACTIONS(1386), + [anon_sym_false] = ACTIONS(1386), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_crate] = ACTIONS(1383), - [sym_metavariable] = ACTIONS(1381), - [sym_raw_string_literal] = ACTIONS(1381), - [sym_float_literal] = ACTIONS(1381), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1386), + [sym_crate] = ACTIONS(1386), + [sym_metavariable] = ACTIONS(1384), + [sym_raw_string_literal] = ACTIONS(1384), + [sym_float_literal] = ACTIONS(1384), [sym_block_comment] = ACTIONS(3), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_macro_rules_BANG] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_u8] = ACTIONS(1387), - [anon_sym_i8] = ACTIONS(1387), - [anon_sym_u16] = ACTIONS(1387), - [anon_sym_i16] = ACTIONS(1387), - [anon_sym_u32] = ACTIONS(1387), - [anon_sym_i32] = ACTIONS(1387), - [anon_sym_u64] = ACTIONS(1387), - [anon_sym_i64] = ACTIONS(1387), - [anon_sym_u128] = ACTIONS(1387), - [anon_sym_i128] = ACTIONS(1387), - [anon_sym_isize] = ACTIONS(1387), - [anon_sym_usize] = ACTIONS(1387), - [anon_sym_f32] = ACTIONS(1387), - [anon_sym_f64] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_str] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_async] = 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_while] = ACTIONS(1387), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_COLON_COLON] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_move] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1385), - [aux_sym_string_literal_token1] = ACTIONS(1385), - [sym_char_literal] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), + [ts_builtin_sym_end] = ACTIONS(1388), + [sym_identifier] = ACTIONS(1390), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_macro_rules_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_u8] = ACTIONS(1390), + [anon_sym_i8] = ACTIONS(1390), + [anon_sym_u16] = ACTIONS(1390), + [anon_sym_i16] = ACTIONS(1390), + [anon_sym_u32] = ACTIONS(1390), + [anon_sym_i32] = ACTIONS(1390), + [anon_sym_u64] = ACTIONS(1390), + [anon_sym_i64] = ACTIONS(1390), + [anon_sym_u128] = ACTIONS(1390), + [anon_sym_i128] = ACTIONS(1390), + [anon_sym_isize] = ACTIONS(1390), + [anon_sym_usize] = ACTIONS(1390), + [anon_sym_f32] = ACTIONS(1390), + [anon_sym_f64] = ACTIONS(1390), + [anon_sym_bool] = ACTIONS(1390), + [anon_sym_str] = ACTIONS(1390), + [anon_sym_char] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [anon_sym_async] = ACTIONS(1390), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_default] = ACTIONS(1390), + [anon_sym_enum] = ACTIONS(1390), + [anon_sym_fn] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_impl] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_mod] = ACTIONS(1390), + [anon_sym_pub] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1390), + [anon_sym_trait] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1390), + [anon_sym_union] = ACTIONS(1390), + [anon_sym_unsafe] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_COLON_COLON] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_move] = ACTIONS(1390), + [sym_integer_literal] = ACTIONS(1388), + [aux_sym_string_literal_token1] = ACTIONS(1388), + [sym_char_literal] = ACTIONS(1388), + [anon_sym_true] = ACTIONS(1390), + [anon_sym_false] = ACTIONS(1390), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1387), - [sym_super] = ACTIONS(1387), - [sym_crate] = ACTIONS(1387), - [sym_metavariable] = ACTIONS(1385), - [sym_raw_string_literal] = ACTIONS(1385), - [sym_float_literal] = ACTIONS(1385), + [sym_self] = ACTIONS(1390), + [sym_super] = ACTIONS(1390), + [sym_crate] = ACTIONS(1390), + [sym_metavariable] = ACTIONS(1388), + [sym_raw_string_literal] = ACTIONS(1388), + [sym_float_literal] = ACTIONS(1388), [sym_block_comment] = ACTIONS(3), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(1389), - [sym_identifier] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_macro_rules_BANG] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_STAR] = ACTIONS(1389), - [anon_sym_u8] = ACTIONS(1391), - [anon_sym_i8] = ACTIONS(1391), - [anon_sym_u16] = ACTIONS(1391), - [anon_sym_i16] = ACTIONS(1391), - [anon_sym_u32] = ACTIONS(1391), - [anon_sym_i32] = ACTIONS(1391), - [anon_sym_u64] = ACTIONS(1391), - [anon_sym_i64] = ACTIONS(1391), - [anon_sym_u128] = ACTIONS(1391), - [anon_sym_i128] = ACTIONS(1391), - [anon_sym_isize] = ACTIONS(1391), - [anon_sym_usize] = ACTIONS(1391), - [anon_sym_f32] = ACTIONS(1391), - [anon_sym_f64] = ACTIONS(1391), - [anon_sym_bool] = ACTIONS(1391), - [anon_sym_str] = ACTIONS(1391), - [anon_sym_char] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1391), - [anon_sym_async] = ACTIONS(1391), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_const] = ACTIONS(1391), - [anon_sym_continue] = ACTIONS(1391), - [anon_sym_default] = ACTIONS(1391), - [anon_sym_enum] = ACTIONS(1391), - [anon_sym_fn] = ACTIONS(1391), - [anon_sym_for] = ACTIONS(1391), - [anon_sym_if] = ACTIONS(1391), - [anon_sym_impl] = ACTIONS(1391), - [anon_sym_let] = ACTIONS(1391), - [anon_sym_loop] = ACTIONS(1391), - [anon_sym_match] = ACTIONS(1391), - [anon_sym_mod] = ACTIONS(1391), - [anon_sym_pub] = ACTIONS(1391), - [anon_sym_return] = ACTIONS(1391), - [anon_sym_static] = ACTIONS(1391), - [anon_sym_struct] = ACTIONS(1391), - [anon_sym_trait] = ACTIONS(1391), - [anon_sym_type] = ACTIONS(1391), - [anon_sym_union] = ACTIONS(1391), - [anon_sym_unsafe] = ACTIONS(1391), - [anon_sym_use] = ACTIONS(1391), - [anon_sym_while] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1389), - [anon_sym_extern] = ACTIONS(1391), - [anon_sym_LT] = ACTIONS(1389), - [anon_sym_COLON_COLON] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DASH] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1389), - [anon_sym_move] = ACTIONS(1391), - [sym_integer_literal] = ACTIONS(1389), - [aux_sym_string_literal_token1] = ACTIONS(1389), - [sym_char_literal] = ACTIONS(1389), - [anon_sym_true] = ACTIONS(1391), - [anon_sym_false] = ACTIONS(1391), + [ts_builtin_sym_end] = ACTIONS(1392), + [sym_identifier] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_macro_rules_BANG] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_u8] = ACTIONS(1394), + [anon_sym_i8] = ACTIONS(1394), + [anon_sym_u16] = ACTIONS(1394), + [anon_sym_i16] = ACTIONS(1394), + [anon_sym_u32] = ACTIONS(1394), + [anon_sym_i32] = ACTIONS(1394), + [anon_sym_u64] = ACTIONS(1394), + [anon_sym_i64] = ACTIONS(1394), + [anon_sym_u128] = ACTIONS(1394), + [anon_sym_i128] = ACTIONS(1394), + [anon_sym_isize] = ACTIONS(1394), + [anon_sym_usize] = ACTIONS(1394), + [anon_sym_f32] = ACTIONS(1394), + [anon_sym_f64] = ACTIONS(1394), + [anon_sym_bool] = ACTIONS(1394), + [anon_sym_str] = ACTIONS(1394), + [anon_sym_char] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_fn] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_impl] = ACTIONS(1394), + [anon_sym_let] = ACTIONS(1394), + [anon_sym_loop] = ACTIONS(1394), + [anon_sym_match] = ACTIONS(1394), + [anon_sym_mod] = ACTIONS(1394), + [anon_sym_pub] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_trait] = ACTIONS(1394), + [anon_sym_type] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_unsafe] = ACTIONS(1394), + [anon_sym_use] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_COLON_COLON] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1394), + [sym_integer_literal] = ACTIONS(1392), + [aux_sym_string_literal_token1] = ACTIONS(1392), + [sym_char_literal] = ACTIONS(1392), + [anon_sym_true] = ACTIONS(1394), + [anon_sym_false] = ACTIONS(1394), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1389), - [sym_raw_string_literal] = ACTIONS(1389), - [sym_float_literal] = ACTIONS(1389), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1394), + [sym_crate] = ACTIONS(1394), + [sym_metavariable] = ACTIONS(1392), + [sym_raw_string_literal] = ACTIONS(1392), + [sym_float_literal] = ACTIONS(1392), [sym_block_comment] = ACTIONS(3), }, [330] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1393), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1398), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_macro_rules_BANG] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_u8] = ACTIONS(1398), + [anon_sym_i8] = ACTIONS(1398), + [anon_sym_u16] = ACTIONS(1398), + [anon_sym_i16] = ACTIONS(1398), + [anon_sym_u32] = ACTIONS(1398), + [anon_sym_i32] = ACTIONS(1398), + [anon_sym_u64] = ACTIONS(1398), + [anon_sym_i64] = ACTIONS(1398), + [anon_sym_u128] = ACTIONS(1398), + [anon_sym_i128] = ACTIONS(1398), + [anon_sym_isize] = ACTIONS(1398), + [anon_sym_usize] = ACTIONS(1398), + [anon_sym_f32] = ACTIONS(1398), + [anon_sym_f64] = ACTIONS(1398), + [anon_sym_bool] = ACTIONS(1398), + [anon_sym_str] = ACTIONS(1398), + [anon_sym_char] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1398), + [anon_sym_async] = ACTIONS(1398), + [anon_sym_break] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_continue] = ACTIONS(1398), + [anon_sym_default] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_fn] = ACTIONS(1398), + [anon_sym_for] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_impl] = ACTIONS(1398), + [anon_sym_let] = ACTIONS(1398), + [anon_sym_loop] = ACTIONS(1398), + [anon_sym_match] = ACTIONS(1398), + [anon_sym_mod] = ACTIONS(1398), + [anon_sym_pub] = ACTIONS(1398), + [anon_sym_return] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_trait] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_unsafe] = ACTIONS(1398), + [anon_sym_use] = ACTIONS(1398), + [anon_sym_while] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_COLON_COLON] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_move] = ACTIONS(1398), + [sym_integer_literal] = ACTIONS(1396), + [aux_sym_string_literal_token1] = ACTIONS(1396), + [sym_char_literal] = ACTIONS(1396), + [anon_sym_true] = ACTIONS(1398), + [anon_sym_false] = ACTIONS(1398), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1398), + [sym_super] = ACTIONS(1398), + [sym_crate] = ACTIONS(1398), + [sym_metavariable] = ACTIONS(1396), + [sym_raw_string_literal] = ACTIONS(1396), + [sym_float_literal] = ACTIONS(1396), [sym_block_comment] = ACTIONS(3), }, [331] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_macro_rules_BANG] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_LBRACK] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_u8] = ACTIONS(1402), + [anon_sym_i8] = ACTIONS(1402), + [anon_sym_u16] = ACTIONS(1402), + [anon_sym_i16] = ACTIONS(1402), + [anon_sym_u32] = ACTIONS(1402), + [anon_sym_i32] = ACTIONS(1402), + [anon_sym_u64] = ACTIONS(1402), + [anon_sym_i64] = ACTIONS(1402), + [anon_sym_u128] = ACTIONS(1402), + [anon_sym_i128] = ACTIONS(1402), + [anon_sym_isize] = ACTIONS(1402), + [anon_sym_usize] = ACTIONS(1402), + [anon_sym_f32] = ACTIONS(1402), + [anon_sym_f64] = ACTIONS(1402), + [anon_sym_bool] = ACTIONS(1402), + [anon_sym_str] = ACTIONS(1402), + [anon_sym_char] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1402), + [anon_sym_async] = 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_while] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_COLON_COLON] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1402), + [sym_integer_literal] = ACTIONS(1400), + [aux_sym_string_literal_token1] = ACTIONS(1400), + [sym_char_literal] = ACTIONS(1400), + [anon_sym_true] = ACTIONS(1402), + [anon_sym_false] = ACTIONS(1402), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1402), + [sym_super] = ACTIONS(1402), + [sym_crate] = ACTIONS(1402), + [sym_metavariable] = ACTIONS(1400), + [sym_raw_string_literal] = ACTIONS(1400), + [sym_float_literal] = ACTIONS(1400), [sym_block_comment] = ACTIONS(3), }, [332] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1406), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_macro_rules_BANG] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_LBRACK] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_u8] = ACTIONS(1406), + [anon_sym_i8] = ACTIONS(1406), + [anon_sym_u16] = ACTIONS(1406), + [anon_sym_i16] = ACTIONS(1406), + [anon_sym_u32] = ACTIONS(1406), + [anon_sym_i32] = ACTIONS(1406), + [anon_sym_u64] = ACTIONS(1406), + [anon_sym_i64] = ACTIONS(1406), + [anon_sym_u128] = ACTIONS(1406), + [anon_sym_i128] = ACTIONS(1406), + [anon_sym_isize] = ACTIONS(1406), + [anon_sym_usize] = ACTIONS(1406), + [anon_sym_f32] = ACTIONS(1406), + [anon_sym_f64] = ACTIONS(1406), + [anon_sym_bool] = ACTIONS(1406), + [anon_sym_str] = ACTIONS(1406), + [anon_sym_char] = ACTIONS(1406), + [anon_sym_SQUOTE] = ACTIONS(1406), + [anon_sym_async] = ACTIONS(1406), + [anon_sym_break] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_continue] = ACTIONS(1406), + [anon_sym_default] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_fn] = ACTIONS(1406), + [anon_sym_for] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_impl] = ACTIONS(1406), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_loop] = ACTIONS(1406), + [anon_sym_match] = ACTIONS(1406), + [anon_sym_mod] = ACTIONS(1406), + [anon_sym_pub] = ACTIONS(1406), + [anon_sym_return] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_trait] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_unsafe] = ACTIONS(1406), + [anon_sym_use] = ACTIONS(1406), + [anon_sym_while] = ACTIONS(1406), + [anon_sym_POUND] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_COLON_COLON] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1406), + [sym_integer_literal] = ACTIONS(1404), + [aux_sym_string_literal_token1] = ACTIONS(1404), + [sym_char_literal] = ACTIONS(1404), + [anon_sym_true] = ACTIONS(1406), + [anon_sym_false] = ACTIONS(1406), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1406), + [sym_super] = ACTIONS(1406), + [sym_crate] = ACTIONS(1406), + [sym_metavariable] = ACTIONS(1404), + [sym_raw_string_literal] = ACTIONS(1404), + [sym_float_literal] = ACTIONS(1404), [sym_block_comment] = ACTIONS(3), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_DOT_DOT] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_move] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1410), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_macro_rules_BANG] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_u8] = ACTIONS(1410), + [anon_sym_i8] = ACTIONS(1410), + [anon_sym_u16] = ACTIONS(1410), + [anon_sym_i16] = ACTIONS(1410), + [anon_sym_u32] = ACTIONS(1410), + [anon_sym_i32] = ACTIONS(1410), + [anon_sym_u64] = ACTIONS(1410), + [anon_sym_i64] = ACTIONS(1410), + [anon_sym_u128] = ACTIONS(1410), + [anon_sym_i128] = ACTIONS(1410), + [anon_sym_isize] = ACTIONS(1410), + [anon_sym_usize] = ACTIONS(1410), + [anon_sym_f32] = ACTIONS(1410), + [anon_sym_f64] = ACTIONS(1410), + [anon_sym_bool] = ACTIONS(1410), + [anon_sym_str] = ACTIONS(1410), + [anon_sym_char] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(1410), + [anon_sym_break] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_continue] = ACTIONS(1410), + [anon_sym_default] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_fn] = ACTIONS(1410), + [anon_sym_for] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_impl] = ACTIONS(1410), + [anon_sym_let] = ACTIONS(1410), + [anon_sym_loop] = ACTIONS(1410), + [anon_sym_match] = ACTIONS(1410), + [anon_sym_mod] = ACTIONS(1410), + [anon_sym_pub] = ACTIONS(1410), + [anon_sym_return] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_trait] = ACTIONS(1410), + [anon_sym_type] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_unsafe] = ACTIONS(1410), + [anon_sym_use] = ACTIONS(1410), + [anon_sym_while] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1408), + [anon_sym_COLON_COLON] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_PIPE] = ACTIONS(1408), + [anon_sym_move] = ACTIONS(1410), + [sym_integer_literal] = ACTIONS(1408), + [aux_sym_string_literal_token1] = ACTIONS(1408), + [sym_char_literal] = ACTIONS(1408), + [anon_sym_true] = ACTIONS(1410), + [anon_sym_false] = ACTIONS(1410), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym_raw_string_literal] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [sym_self] = ACTIONS(1410), + [sym_super] = ACTIONS(1410), + [sym_crate] = ACTIONS(1410), + [sym_metavariable] = ACTIONS(1408), + [sym_raw_string_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1408), [sym_block_comment] = ACTIONS(3), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(1399), - [sym_identifier] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_macro_rules_BANG] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACE] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_SQUOTE] = ACTIONS(1401), - [anon_sym_async] = ACTIONS(1401), - [anon_sym_break] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_continue] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_enum] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1401), - [anon_sym_for] = ACTIONS(1401), - [anon_sym_if] = ACTIONS(1401), - [anon_sym_impl] = ACTIONS(1401), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_loop] = ACTIONS(1401), - [anon_sym_match] = ACTIONS(1401), - [anon_sym_mod] = ACTIONS(1401), - [anon_sym_pub] = ACTIONS(1401), - [anon_sym_return] = ACTIONS(1401), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_struct] = ACTIONS(1401), - [anon_sym_trait] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_unsafe] = ACTIONS(1401), - [anon_sym_use] = ACTIONS(1401), - [anon_sym_while] = ACTIONS(1401), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_extern] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_DOT_DOT] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_move] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_STAR] = ACTIONS(1412), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_BANG] = ACTIONS(1412), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1412), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_AMP] = ACTIONS(1412), + [anon_sym_DOT_DOT] = ACTIONS(1412), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_move] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym_raw_string_literal] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym_raw_string_literal] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), [sym_block_comment] = ACTIONS(3), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(1403), - [sym_identifier] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_macro_rules_BANG] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_SQUOTE] = ACTIONS(1405), - [anon_sym_async] = ACTIONS(1405), - [anon_sym_break] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_continue] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_enum] = ACTIONS(1405), - [anon_sym_fn] = ACTIONS(1405), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_if] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1405), - [anon_sym_let] = ACTIONS(1405), - [anon_sym_loop] = ACTIONS(1405), - [anon_sym_match] = ACTIONS(1405), - [anon_sym_mod] = ACTIONS(1405), - [anon_sym_pub] = ACTIONS(1405), - [anon_sym_return] = ACTIONS(1405), - [anon_sym_static] = ACTIONS(1405), - [anon_sym_struct] = ACTIONS(1405), - [anon_sym_trait] = ACTIONS(1405), - [anon_sym_type] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_unsafe] = ACTIONS(1405), - [anon_sym_use] = ACTIONS(1405), - [anon_sym_while] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_extern] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_DOT_DOT] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_move] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1418), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_macro_rules_BANG] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LBRACK] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_u8] = ACTIONS(1418), + [anon_sym_i8] = ACTIONS(1418), + [anon_sym_u16] = ACTIONS(1418), + [anon_sym_i16] = ACTIONS(1418), + [anon_sym_u32] = ACTIONS(1418), + [anon_sym_i32] = ACTIONS(1418), + [anon_sym_u64] = ACTIONS(1418), + [anon_sym_i64] = ACTIONS(1418), + [anon_sym_u128] = ACTIONS(1418), + [anon_sym_i128] = ACTIONS(1418), + [anon_sym_isize] = ACTIONS(1418), + [anon_sym_usize] = ACTIONS(1418), + [anon_sym_f32] = ACTIONS(1418), + [anon_sym_f64] = ACTIONS(1418), + [anon_sym_bool] = ACTIONS(1418), + [anon_sym_str] = ACTIONS(1418), + [anon_sym_char] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1418), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_fn] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_impl] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1418), + [anon_sym_loop] = ACTIONS(1418), + [anon_sym_match] = ACTIONS(1418), + [anon_sym_mod] = ACTIONS(1418), + [anon_sym_pub] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_trait] = ACTIONS(1418), + [anon_sym_type] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1418), + [anon_sym_use] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_move] = ACTIONS(1418), + [sym_integer_literal] = ACTIONS(1416), + [aux_sym_string_literal_token1] = ACTIONS(1416), + [sym_char_literal] = ACTIONS(1416), + [anon_sym_true] = ACTIONS(1418), + [anon_sym_false] = ACTIONS(1418), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym_raw_string_literal] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [sym_self] = ACTIONS(1418), + [sym_super] = ACTIONS(1418), + [sym_crate] = ACTIONS(1418), + [sym_metavariable] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1416), + [sym_float_literal] = ACTIONS(1416), [sym_block_comment] = ACTIONS(3), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_DOT_DOT] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_move] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1420), + [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_move] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym_raw_string_literal] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym_raw_string_literal] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), [sym_block_comment] = ACTIONS(3), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(1411), - [sym_identifier] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1411), - [anon_sym_macro_rules_BANG] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACE] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_SQUOTE] = ACTIONS(1413), - [anon_sym_async] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_continue] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_enum] = ACTIONS(1413), - [anon_sym_fn] = ACTIONS(1413), - [anon_sym_for] = ACTIONS(1413), - [anon_sym_if] = ACTIONS(1413), - [anon_sym_impl] = ACTIONS(1413), - [anon_sym_let] = ACTIONS(1413), - [anon_sym_loop] = ACTIONS(1413), - [anon_sym_match] = ACTIONS(1413), - [anon_sym_mod] = ACTIONS(1413), - [anon_sym_pub] = ACTIONS(1413), - [anon_sym_return] = ACTIONS(1413), - [anon_sym_static] = ACTIONS(1413), - [anon_sym_struct] = ACTIONS(1413), - [anon_sym_trait] = ACTIONS(1413), - [anon_sym_type] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_unsafe] = ACTIONS(1413), - [anon_sym_use] = ACTIONS(1413), - [anon_sym_while] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_extern] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_DOT_DOT] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_move] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_DOT_DOT] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1424), + [anon_sym_PIPE] = ACTIONS(1424), + [anon_sym_move] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym_raw_string_literal] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1424), + [sym_raw_string_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), [sym_block_comment] = ACTIONS(3), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(1415), - [sym_identifier] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1415), - [anon_sym_macro_rules_BANG] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1415), - [anon_sym_LBRACE] = ACTIONS(1415), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_u8] = ACTIONS(1417), - [anon_sym_i8] = ACTIONS(1417), - [anon_sym_u16] = ACTIONS(1417), - [anon_sym_i16] = ACTIONS(1417), - [anon_sym_u32] = ACTIONS(1417), - [anon_sym_i32] = ACTIONS(1417), - [anon_sym_u64] = ACTIONS(1417), - [anon_sym_i64] = ACTIONS(1417), - [anon_sym_u128] = ACTIONS(1417), - [anon_sym_i128] = ACTIONS(1417), - [anon_sym_isize] = ACTIONS(1417), - [anon_sym_usize] = ACTIONS(1417), - [anon_sym_f32] = ACTIONS(1417), - [anon_sym_f64] = ACTIONS(1417), - [anon_sym_bool] = ACTIONS(1417), - [anon_sym_str] = ACTIONS(1417), - [anon_sym_char] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1417), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_break] = ACTIONS(1417), - [anon_sym_const] = ACTIONS(1417), - [anon_sym_continue] = ACTIONS(1417), - [anon_sym_default] = ACTIONS(1417), - [anon_sym_enum] = ACTIONS(1417), - [anon_sym_fn] = ACTIONS(1417), - [anon_sym_for] = ACTIONS(1417), - [anon_sym_if] = ACTIONS(1417), - [anon_sym_impl] = ACTIONS(1417), - [anon_sym_let] = ACTIONS(1417), - [anon_sym_loop] = ACTIONS(1417), - [anon_sym_match] = ACTIONS(1417), - [anon_sym_mod] = ACTIONS(1417), - [anon_sym_pub] = ACTIONS(1417), - [anon_sym_return] = ACTIONS(1417), - [anon_sym_static] = ACTIONS(1417), - [anon_sym_struct] = ACTIONS(1417), - [anon_sym_trait] = ACTIONS(1417), - [anon_sym_type] = ACTIONS(1417), - [anon_sym_union] = ACTIONS(1417), - [anon_sym_unsafe] = ACTIONS(1417), - [anon_sym_use] = ACTIONS(1417), - [anon_sym_while] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_extern] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_DOT_DOT] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_move] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1415), - [aux_sym_string_literal_token1] = ACTIONS(1415), - [sym_char_literal] = ACTIONS(1415), - [anon_sym_true] = ACTIONS(1417), - [anon_sym_false] = ACTIONS(1417), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_DOT_DOT] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_move] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1417), - [sym_super] = ACTIONS(1417), - [sym_crate] = ACTIONS(1417), - [sym_metavariable] = ACTIONS(1415), - [sym_raw_string_literal] = ACTIONS(1415), - [sym_float_literal] = ACTIONS(1415), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), [sym_block_comment] = ACTIONS(3), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(1419), - [sym_identifier] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1419), - [anon_sym_macro_rules_BANG] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1419), - [anon_sym_RBRACE] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_u8] = ACTIONS(1421), - [anon_sym_i8] = ACTIONS(1421), - [anon_sym_u16] = ACTIONS(1421), - [anon_sym_i16] = ACTIONS(1421), - [anon_sym_u32] = ACTIONS(1421), - [anon_sym_i32] = ACTIONS(1421), - [anon_sym_u64] = ACTIONS(1421), - [anon_sym_i64] = ACTIONS(1421), - [anon_sym_u128] = ACTIONS(1421), - [anon_sym_i128] = ACTIONS(1421), - [anon_sym_isize] = ACTIONS(1421), - [anon_sym_usize] = ACTIONS(1421), - [anon_sym_f32] = ACTIONS(1421), - [anon_sym_f64] = ACTIONS(1421), - [anon_sym_bool] = ACTIONS(1421), - [anon_sym_str] = ACTIONS(1421), - [anon_sym_char] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1421), - [anon_sym_async] = ACTIONS(1421), - [anon_sym_break] = ACTIONS(1421), - [anon_sym_const] = ACTIONS(1421), - [anon_sym_continue] = ACTIONS(1421), - [anon_sym_default] = ACTIONS(1421), - [anon_sym_enum] = ACTIONS(1421), - [anon_sym_fn] = ACTIONS(1421), - [anon_sym_for] = ACTIONS(1421), - [anon_sym_if] = ACTIONS(1421), - [anon_sym_impl] = ACTIONS(1421), - [anon_sym_let] = ACTIONS(1421), - [anon_sym_loop] = ACTIONS(1421), - [anon_sym_match] = ACTIONS(1421), - [anon_sym_mod] = ACTIONS(1421), - [anon_sym_pub] = ACTIONS(1421), - [anon_sym_return] = ACTIONS(1421), - [anon_sym_static] = ACTIONS(1421), - [anon_sym_struct] = ACTIONS(1421), - [anon_sym_trait] = ACTIONS(1421), - [anon_sym_type] = ACTIONS(1421), - [anon_sym_union] = ACTIONS(1421), - [anon_sym_unsafe] = ACTIONS(1421), - [anon_sym_use] = ACTIONS(1421), - [anon_sym_while] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_COLON_COLON] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_move] = ACTIONS(1421), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1419), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1421), - [anon_sym_false] = ACTIONS(1421), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1421), - [sym_super] = ACTIONS(1421), - [sym_crate] = ACTIONS(1421), - [sym_metavariable] = ACTIONS(1419), - [sym_raw_string_literal] = ACTIONS(1419), - [sym_float_literal] = ACTIONS(1419), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), [sym_block_comment] = ACTIONS(3), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(1423), - [sym_identifier] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_macro_rules_BANG] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(1423), - [anon_sym_RBRACE] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_u8] = ACTIONS(1425), - [anon_sym_i8] = ACTIONS(1425), - [anon_sym_u16] = ACTIONS(1425), - [anon_sym_i16] = ACTIONS(1425), - [anon_sym_u32] = ACTIONS(1425), - [anon_sym_i32] = ACTIONS(1425), - [anon_sym_u64] = ACTIONS(1425), - [anon_sym_i64] = ACTIONS(1425), - [anon_sym_u128] = ACTIONS(1425), - [anon_sym_i128] = ACTIONS(1425), - [anon_sym_isize] = ACTIONS(1425), - [anon_sym_usize] = ACTIONS(1425), - [anon_sym_f32] = ACTIONS(1425), - [anon_sym_f64] = ACTIONS(1425), - [anon_sym_bool] = ACTIONS(1425), - [anon_sym_str] = ACTIONS(1425), - [anon_sym_char] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1425), - [anon_sym_async] = ACTIONS(1425), - [anon_sym_break] = ACTIONS(1425), - [anon_sym_const] = ACTIONS(1425), - [anon_sym_continue] = ACTIONS(1425), - [anon_sym_default] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1425), - [anon_sym_fn] = ACTIONS(1425), - [anon_sym_for] = ACTIONS(1425), - [anon_sym_if] = ACTIONS(1425), - [anon_sym_impl] = ACTIONS(1425), - [anon_sym_let] = ACTIONS(1425), - [anon_sym_loop] = ACTIONS(1425), - [anon_sym_match] = ACTIONS(1425), - [anon_sym_mod] = ACTIONS(1425), - [anon_sym_pub] = ACTIONS(1425), - [anon_sym_return] = ACTIONS(1425), - [anon_sym_static] = ACTIONS(1425), - [anon_sym_struct] = ACTIONS(1425), - [anon_sym_trait] = ACTIONS(1425), - [anon_sym_type] = ACTIONS(1425), - [anon_sym_union] = ACTIONS(1425), - [anon_sym_unsafe] = ACTIONS(1425), - [anon_sym_use] = ACTIONS(1425), - [anon_sym_while] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_move] = ACTIONS(1425), - [sym_integer_literal] = ACTIONS(1423), - [aux_sym_string_literal_token1] = ACTIONS(1423), - [sym_char_literal] = ACTIONS(1423), - [anon_sym_true] = ACTIONS(1425), - [anon_sym_false] = ACTIONS(1425), + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_macro_rules_BANG] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1438), + [anon_sym_i8] = ACTIONS(1438), + [anon_sym_u16] = ACTIONS(1438), + [anon_sym_i16] = ACTIONS(1438), + [anon_sym_u32] = ACTIONS(1438), + [anon_sym_i32] = ACTIONS(1438), + [anon_sym_u64] = ACTIONS(1438), + [anon_sym_i64] = ACTIONS(1438), + [anon_sym_u128] = ACTIONS(1438), + [anon_sym_i128] = ACTIONS(1438), + [anon_sym_isize] = ACTIONS(1438), + [anon_sym_usize] = ACTIONS(1438), + [anon_sym_f32] = ACTIONS(1438), + [anon_sym_f64] = ACTIONS(1438), + [anon_sym_bool] = ACTIONS(1438), + [anon_sym_str] = ACTIONS(1438), + [anon_sym_char] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_async] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_impl] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1438), + [anon_sym_loop] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1438), + [anon_sym_mod] = ACTIONS(1438), + [anon_sym_pub] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_trait] = ACTIONS(1438), + [anon_sym_type] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_unsafe] = ACTIONS(1438), + [anon_sym_use] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1425), - [sym_crate] = ACTIONS(1425), - [sym_metavariable] = ACTIONS(1423), - [sym_raw_string_literal] = ACTIONS(1423), - [sym_float_literal] = ACTIONS(1423), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), [sym_block_comment] = ACTIONS(3), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(1427), - [sym_identifier] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_macro_rules_BANG] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_u8] = ACTIONS(1429), - [anon_sym_i8] = ACTIONS(1429), - [anon_sym_u16] = ACTIONS(1429), - [anon_sym_i16] = ACTIONS(1429), - [anon_sym_u32] = ACTIONS(1429), - [anon_sym_i32] = ACTIONS(1429), - [anon_sym_u64] = ACTIONS(1429), - [anon_sym_i64] = ACTIONS(1429), - [anon_sym_u128] = ACTIONS(1429), - [anon_sym_i128] = ACTIONS(1429), - [anon_sym_isize] = ACTIONS(1429), - [anon_sym_usize] = ACTIONS(1429), - [anon_sym_f32] = ACTIONS(1429), - [anon_sym_f64] = ACTIONS(1429), - [anon_sym_bool] = ACTIONS(1429), - [anon_sym_str] = ACTIONS(1429), - [anon_sym_char] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1429), - [anon_sym_async] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_const] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_default] = ACTIONS(1429), - [anon_sym_enum] = ACTIONS(1429), - [anon_sym_fn] = ACTIONS(1429), - [anon_sym_for] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_impl] = ACTIONS(1429), - [anon_sym_let] = ACTIONS(1429), - [anon_sym_loop] = ACTIONS(1429), - [anon_sym_match] = ACTIONS(1429), - [anon_sym_mod] = ACTIONS(1429), - [anon_sym_pub] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_static] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1429), - [anon_sym_trait] = ACTIONS(1429), - [anon_sym_type] = ACTIONS(1429), - [anon_sym_union] = ACTIONS(1429), - [anon_sym_unsafe] = ACTIONS(1429), - [anon_sym_use] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_move] = ACTIONS(1429), - [sym_integer_literal] = ACTIONS(1427), - [aux_sym_string_literal_token1] = ACTIONS(1427), - [sym_char_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_macro_rules_BANG] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1429), - [sym_super] = ACTIONS(1429), - [sym_crate] = ACTIONS(1429), - [sym_metavariable] = ACTIONS(1427), - [sym_raw_string_literal] = ACTIONS(1427), - [sym_float_literal] = ACTIONS(1427), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), [sym_block_comment] = ACTIONS(3), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(1431), - [sym_identifier] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1431), - [anon_sym_macro_rules_BANG] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1431), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1431), - [anon_sym_LBRACK] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_u8] = ACTIONS(1433), - [anon_sym_i8] = ACTIONS(1433), - [anon_sym_u16] = ACTIONS(1433), - [anon_sym_i16] = ACTIONS(1433), - [anon_sym_u32] = ACTIONS(1433), - [anon_sym_i32] = ACTIONS(1433), - [anon_sym_u64] = ACTIONS(1433), - [anon_sym_i64] = ACTIONS(1433), - [anon_sym_u128] = ACTIONS(1433), - [anon_sym_i128] = ACTIONS(1433), - [anon_sym_isize] = ACTIONS(1433), - [anon_sym_usize] = ACTIONS(1433), - [anon_sym_f32] = ACTIONS(1433), - [anon_sym_f64] = ACTIONS(1433), - [anon_sym_bool] = ACTIONS(1433), - [anon_sym_str] = ACTIONS(1433), - [anon_sym_char] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1433), - [anon_sym_async] = ACTIONS(1433), - [anon_sym_break] = ACTIONS(1433), - [anon_sym_const] = ACTIONS(1433), - [anon_sym_continue] = ACTIONS(1433), - [anon_sym_default] = ACTIONS(1433), - [anon_sym_enum] = ACTIONS(1433), - [anon_sym_fn] = ACTIONS(1433), - [anon_sym_for] = ACTIONS(1433), - [anon_sym_if] = ACTIONS(1433), - [anon_sym_impl] = ACTIONS(1433), - [anon_sym_let] = ACTIONS(1433), - [anon_sym_loop] = ACTIONS(1433), - [anon_sym_match] = ACTIONS(1433), - [anon_sym_mod] = ACTIONS(1433), - [anon_sym_pub] = ACTIONS(1433), - [anon_sym_return] = ACTIONS(1433), - [anon_sym_static] = ACTIONS(1433), - [anon_sym_struct] = ACTIONS(1433), - [anon_sym_trait] = ACTIONS(1433), - [anon_sym_type] = ACTIONS(1433), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_unsafe] = ACTIONS(1433), - [anon_sym_use] = ACTIONS(1433), - [anon_sym_while] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_move] = ACTIONS(1433), - [sym_integer_literal] = ACTIONS(1431), - [aux_sym_string_literal_token1] = ACTIONS(1431), - [sym_char_literal] = ACTIONS(1431), - [anon_sym_true] = ACTIONS(1433), - [anon_sym_false] = ACTIONS(1433), + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1446), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_macro_rules_BANG] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1446), + [anon_sym_i8] = ACTIONS(1446), + [anon_sym_u16] = ACTIONS(1446), + [anon_sym_i16] = ACTIONS(1446), + [anon_sym_u32] = ACTIONS(1446), + [anon_sym_i32] = ACTIONS(1446), + [anon_sym_u64] = ACTIONS(1446), + [anon_sym_i64] = ACTIONS(1446), + [anon_sym_u128] = ACTIONS(1446), + [anon_sym_i128] = ACTIONS(1446), + [anon_sym_isize] = ACTIONS(1446), + [anon_sym_usize] = ACTIONS(1446), + [anon_sym_f32] = ACTIONS(1446), + [anon_sym_f64] = ACTIONS(1446), + [anon_sym_bool] = ACTIONS(1446), + [anon_sym_str] = ACTIONS(1446), + [anon_sym_char] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1446), + [anon_sym_async] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_fn] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_impl] = ACTIONS(1446), + [anon_sym_let] = ACTIONS(1446), + [anon_sym_loop] = ACTIONS(1446), + [anon_sym_match] = ACTIONS(1446), + [anon_sym_mod] = ACTIONS(1446), + [anon_sym_pub] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_trait] = ACTIONS(1446), + [anon_sym_type] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_unsafe] = ACTIONS(1446), + [anon_sym_use] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1446), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1446), + [anon_sym_false] = ACTIONS(1446), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1433), - [sym_super] = ACTIONS(1433), - [sym_crate] = ACTIONS(1433), - [sym_metavariable] = ACTIONS(1431), - [sym_raw_string_literal] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1431), + [sym_self] = ACTIONS(1446), + [sym_super] = ACTIONS(1446), + [sym_crate] = ACTIONS(1446), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), [sym_block_comment] = ACTIONS(3), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(1435), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1450), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym_macro_rules_BANG] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_LBRACK] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_u8] = ACTIONS(1450), + [anon_sym_i8] = ACTIONS(1450), + [anon_sym_u16] = ACTIONS(1450), + [anon_sym_i16] = ACTIONS(1450), + [anon_sym_u32] = ACTIONS(1450), + [anon_sym_i32] = ACTIONS(1450), + [anon_sym_u64] = ACTIONS(1450), + [anon_sym_i64] = ACTIONS(1450), + [anon_sym_u128] = ACTIONS(1450), + [anon_sym_i128] = ACTIONS(1450), + [anon_sym_isize] = ACTIONS(1450), + [anon_sym_usize] = ACTIONS(1450), + [anon_sym_f32] = ACTIONS(1450), + [anon_sym_f64] = ACTIONS(1450), + [anon_sym_bool] = ACTIONS(1450), + [anon_sym_str] = ACTIONS(1450), + [anon_sym_char] = ACTIONS(1450), + [anon_sym_SQUOTE] = ACTIONS(1450), + [anon_sym_async] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_fn] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_impl] = ACTIONS(1450), + [anon_sym_let] = ACTIONS(1450), + [anon_sym_loop] = ACTIONS(1450), + [anon_sym_match] = ACTIONS(1450), + [anon_sym_mod] = ACTIONS(1450), + [anon_sym_pub] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_trait] = ACTIONS(1450), + [anon_sym_type] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_unsafe] = ACTIONS(1450), + [anon_sym_use] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_POUND] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1450), + [sym_integer_literal] = ACTIONS(1448), + [aux_sym_string_literal_token1] = ACTIONS(1448), + [sym_char_literal] = ACTIONS(1448), + [anon_sym_true] = ACTIONS(1450), + [anon_sym_false] = ACTIONS(1450), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1437), - [sym_super] = ACTIONS(1437), - [sym_crate] = ACTIONS(1437), - [sym_metavariable] = ACTIONS(1435), - [sym_raw_string_literal] = ACTIONS(1435), - [sym_float_literal] = ACTIONS(1435), + [sym_self] = ACTIONS(1450), + [sym_super] = ACTIONS(1450), + [sym_crate] = ACTIONS(1450), + [sym_metavariable] = ACTIONS(1448), + [sym_raw_string_literal] = ACTIONS(1448), + [sym_float_literal] = ACTIONS(1448), [sym_block_comment] = ACTIONS(3), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(1439), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_DOT_DOT] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1452), + [anon_sym_move] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1441), - [sym_super] = ACTIONS(1441), - [sym_crate] = ACTIONS(1441), - [sym_metavariable] = ACTIONS(1439), - [sym_raw_string_literal] = ACTIONS(1439), - [sym_float_literal] = ACTIONS(1439), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym_raw_string_literal] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), [sym_block_comment] = ACTIONS(3), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(1443), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_move] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1445), - [sym_super] = ACTIONS(1445), - [sym_crate] = ACTIONS(1445), - [sym_metavariable] = ACTIONS(1443), - [sym_raw_string_literal] = ACTIONS(1443), - [sym_float_literal] = ACTIONS(1443), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), [sym_block_comment] = ACTIONS(3), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym_macro_rules_BANG] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(1460), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_POUND] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_COLON_COLON] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1460), + [anon_sym_PIPE] = ACTIONS(1460), + [anon_sym_move] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1460), + [aux_sym_string_literal_token1] = ACTIONS(1460), + [sym_char_literal] = ACTIONS(1460), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym_raw_string_literal] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1460), + [sym_raw_string_literal] = ACTIONS(1460), + [sym_float_literal] = ACTIONS(1460), [sym_block_comment] = ACTIONS(3), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_macro_rules_BANG] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_DOT_DOT] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_move] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym_raw_string_literal] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), [sym_block_comment] = ACTIONS(3), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_macro_rules_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_move] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym_raw_string_literal] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), [sym_block_comment] = ACTIONS(3), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_macro_rules_BANG] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_move] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym_raw_string_literal] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), [sym_block_comment] = ACTIONS(3), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_macro_rules_BANG] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym_raw_string_literal] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), [sym_block_comment] = ACTIONS(3), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_macro_rules_BANG] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym_raw_string_literal] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1480), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), [sym_block_comment] = ACTIONS(3), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(1471), - [sym_identifier] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1471), - [anon_sym_macro_rules_BANG] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_LBRACE] = ACTIONS(1471), - [anon_sym_RBRACE] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_u8] = ACTIONS(1473), - [anon_sym_i8] = ACTIONS(1473), - [anon_sym_u16] = ACTIONS(1473), - [anon_sym_i16] = ACTIONS(1473), - [anon_sym_u32] = ACTIONS(1473), - [anon_sym_i32] = ACTIONS(1473), - [anon_sym_u64] = ACTIONS(1473), - [anon_sym_i64] = ACTIONS(1473), - [anon_sym_u128] = ACTIONS(1473), - [anon_sym_i128] = ACTIONS(1473), - [anon_sym_isize] = ACTIONS(1473), - [anon_sym_usize] = ACTIONS(1473), - [anon_sym_f32] = ACTIONS(1473), - [anon_sym_f64] = ACTIONS(1473), - [anon_sym_bool] = ACTIONS(1473), - [anon_sym_str] = ACTIONS(1473), - [anon_sym_char] = ACTIONS(1473), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_macro_rules_BANG] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1486), + [anon_sym_i8] = ACTIONS(1486), + [anon_sym_u16] = ACTIONS(1486), + [anon_sym_i16] = ACTIONS(1486), + [anon_sym_u32] = ACTIONS(1486), + [anon_sym_i32] = ACTIONS(1486), + [anon_sym_u64] = ACTIONS(1486), + [anon_sym_i64] = ACTIONS(1486), + [anon_sym_u128] = ACTIONS(1486), + [anon_sym_i128] = ACTIONS(1486), + [anon_sym_isize] = ACTIONS(1486), + [anon_sym_usize] = ACTIONS(1486), + [anon_sym_f32] = ACTIONS(1486), + [anon_sym_f64] = ACTIONS(1486), + [anon_sym_bool] = ACTIONS(1486), + [anon_sym_str] = ACTIONS(1486), + [anon_sym_char] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1486), + [anon_sym_async] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_impl] = ACTIONS(1486), + [anon_sym_let] = ACTIONS(1486), + [anon_sym_loop] = ACTIONS(1486), + [anon_sym_match] = ACTIONS(1486), + [anon_sym_mod] = ACTIONS(1486), + [anon_sym_pub] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_trait] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_unsafe] = ACTIONS(1486), + [anon_sym_use] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1486), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1486), + [anon_sym_false] = ACTIONS(1486), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1473), - [sym_super] = ACTIONS(1473), - [sym_crate] = ACTIONS(1473), - [sym_metavariable] = ACTIONS(1471), - [sym_raw_string_literal] = ACTIONS(1471), - [sym_float_literal] = ACTIONS(1471), + [sym_self] = ACTIONS(1486), + [sym_super] = ACTIONS(1486), + [sym_crate] = ACTIONS(1486), + [sym_metavariable] = ACTIONS(1484), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), [sym_block_comment] = ACTIONS(3), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1490), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym_macro_rules_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_u8] = ACTIONS(1490), + [anon_sym_i8] = ACTIONS(1490), + [anon_sym_u16] = ACTIONS(1490), + [anon_sym_i16] = ACTIONS(1490), + [anon_sym_u32] = ACTIONS(1490), + [anon_sym_i32] = ACTIONS(1490), + [anon_sym_u64] = ACTIONS(1490), + [anon_sym_i64] = ACTIONS(1490), + [anon_sym_u128] = ACTIONS(1490), + [anon_sym_i128] = ACTIONS(1490), + [anon_sym_isize] = ACTIONS(1490), + [anon_sym_usize] = ACTIONS(1490), + [anon_sym_f32] = ACTIONS(1490), + [anon_sym_f64] = ACTIONS(1490), + [anon_sym_bool] = ACTIONS(1490), + [anon_sym_str] = ACTIONS(1490), + [anon_sym_char] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1490), + [anon_sym_async] = ACTIONS(1490), + [anon_sym_break] = ACTIONS(1490), + [anon_sym_const] = ACTIONS(1490), + [anon_sym_continue] = ACTIONS(1490), + [anon_sym_default] = ACTIONS(1490), + [anon_sym_enum] = ACTIONS(1490), + [anon_sym_fn] = ACTIONS(1490), + [anon_sym_for] = ACTIONS(1490), + [anon_sym_if] = ACTIONS(1490), + [anon_sym_impl] = ACTIONS(1490), + [anon_sym_let] = ACTIONS(1490), + [anon_sym_loop] = ACTIONS(1490), + [anon_sym_match] = ACTIONS(1490), + [anon_sym_mod] = ACTIONS(1490), + [anon_sym_pub] = ACTIONS(1490), + [anon_sym_return] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1490), + [anon_sym_struct] = ACTIONS(1490), + [anon_sym_trait] = ACTIONS(1490), + [anon_sym_type] = ACTIONS(1490), + [anon_sym_union] = ACTIONS(1490), + [anon_sym_unsafe] = ACTIONS(1490), + [anon_sym_use] = ACTIONS(1490), + [anon_sym_while] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_COLON_COLON] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1488), + [aux_sym_string_literal_token1] = ACTIONS(1488), + [sym_char_literal] = ACTIONS(1488), + [anon_sym_true] = ACTIONS(1490), + [anon_sym_false] = ACTIONS(1490), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym_raw_string_literal] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), + [sym_self] = ACTIONS(1490), + [sym_super] = ACTIONS(1490), + [sym_crate] = ACTIONS(1490), + [sym_metavariable] = ACTIONS(1488), + [sym_raw_string_literal] = ACTIONS(1488), + [sym_float_literal] = ACTIONS(1488), [sym_block_comment] = ACTIONS(3), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1492), + [anon_sym_macro_rules_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1492), + [anon_sym_RBRACE] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_u8] = ACTIONS(1494), + [anon_sym_i8] = ACTIONS(1494), + [anon_sym_u16] = ACTIONS(1494), + [anon_sym_i16] = ACTIONS(1494), + [anon_sym_u32] = ACTIONS(1494), + [anon_sym_i32] = ACTIONS(1494), + [anon_sym_u64] = ACTIONS(1494), + [anon_sym_i64] = ACTIONS(1494), + [anon_sym_u128] = ACTIONS(1494), + [anon_sym_i128] = ACTIONS(1494), + [anon_sym_isize] = ACTIONS(1494), + [anon_sym_usize] = ACTIONS(1494), + [anon_sym_f32] = ACTIONS(1494), + [anon_sym_f64] = ACTIONS(1494), + [anon_sym_bool] = ACTIONS(1494), + [anon_sym_str] = ACTIONS(1494), + [anon_sym_char] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_async] = ACTIONS(1494), + [anon_sym_break] = ACTIONS(1494), + [anon_sym_const] = ACTIONS(1494), + [anon_sym_continue] = ACTIONS(1494), + [anon_sym_default] = ACTIONS(1494), + [anon_sym_enum] = ACTIONS(1494), + [anon_sym_fn] = ACTIONS(1494), + [anon_sym_for] = ACTIONS(1494), + [anon_sym_if] = ACTIONS(1494), + [anon_sym_impl] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1494), + [anon_sym_loop] = ACTIONS(1494), + [anon_sym_match] = ACTIONS(1494), + [anon_sym_mod] = ACTIONS(1494), + [anon_sym_pub] = ACTIONS(1494), + [anon_sym_return] = ACTIONS(1494), + [anon_sym_static] = ACTIONS(1494), + [anon_sym_struct] = ACTIONS(1494), + [anon_sym_trait] = ACTIONS(1494), + [anon_sym_type] = ACTIONS(1494), + [anon_sym_union] = ACTIONS(1494), + [anon_sym_unsafe] = ACTIONS(1494), + [anon_sym_use] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_COLON_COLON] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1494), + [sym_integer_literal] = ACTIONS(1492), + [aux_sym_string_literal_token1] = ACTIONS(1492), + [sym_char_literal] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1494), + [anon_sym_false] = ACTIONS(1494), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym_raw_string_literal] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [sym_self] = ACTIONS(1494), + [sym_super] = ACTIONS(1494), + [sym_crate] = ACTIONS(1494), + [sym_metavariable] = ACTIONS(1492), + [sym_raw_string_literal] = ACTIONS(1492), + [sym_float_literal] = ACTIONS(1492), [sym_block_comment] = ACTIONS(3), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1496), + [anon_sym_macro_rules_BANG] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1496), + [anon_sym_RBRACE] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1498), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_COLON_COLON] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1496), + [aux_sym_string_literal_token1] = ACTIONS(1496), + [sym_char_literal] = ACTIONS(1496), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym_raw_string_literal] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_metavariable] = ACTIONS(1496), + [sym_raw_string_literal] = ACTIONS(1496), + [sym_float_literal] = ACTIONS(1496), [sym_block_comment] = ACTIONS(3), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(1487), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_identifier] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_macro_rules_BANG] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1502), + [anon_sym_i8] = ACTIONS(1502), + [anon_sym_u16] = ACTIONS(1502), + [anon_sym_i16] = ACTIONS(1502), + [anon_sym_u32] = ACTIONS(1502), + [anon_sym_i32] = ACTIONS(1502), + [anon_sym_u64] = ACTIONS(1502), + [anon_sym_i64] = ACTIONS(1502), + [anon_sym_u128] = ACTIONS(1502), + [anon_sym_i128] = ACTIONS(1502), + [anon_sym_isize] = ACTIONS(1502), + [anon_sym_usize] = ACTIONS(1502), + [anon_sym_f32] = ACTIONS(1502), + [anon_sym_f64] = ACTIONS(1502), + [anon_sym_bool] = ACTIONS(1502), + [anon_sym_str] = ACTIONS(1502), + [anon_sym_char] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_async] = ACTIONS(1502), + [anon_sym_break] = ACTIONS(1502), + [anon_sym_const] = ACTIONS(1502), + [anon_sym_continue] = ACTIONS(1502), + [anon_sym_default] = ACTIONS(1502), + [anon_sym_enum] = ACTIONS(1502), + [anon_sym_fn] = ACTIONS(1502), + [anon_sym_for] = ACTIONS(1502), + [anon_sym_if] = ACTIONS(1502), + [anon_sym_impl] = ACTIONS(1502), + [anon_sym_let] = ACTIONS(1502), + [anon_sym_loop] = ACTIONS(1502), + [anon_sym_match] = ACTIONS(1502), + [anon_sym_mod] = ACTIONS(1502), + [anon_sym_pub] = ACTIONS(1502), + [anon_sym_return] = ACTIONS(1502), + [anon_sym_static] = ACTIONS(1502), + [anon_sym_struct] = ACTIONS(1502), + [anon_sym_trait] = ACTIONS(1502), + [anon_sym_type] = ACTIONS(1502), + [anon_sym_union] = ACTIONS(1502), + [anon_sym_unsafe] = ACTIONS(1502), + [anon_sym_use] = ACTIONS(1502), + [anon_sym_while] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1502), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1502), + [anon_sym_false] = ACTIONS(1502), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_crate] = ACTIONS(1489), - [sym_metavariable] = ACTIONS(1487), - [sym_raw_string_literal] = ACTIONS(1487), - [sym_float_literal] = ACTIONS(1487), + [sym_self] = ACTIONS(1502), + [sym_super] = ACTIONS(1502), + [sym_crate] = ACTIONS(1502), + [sym_metavariable] = ACTIONS(1500), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), [sym_block_comment] = ACTIONS(3), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(1491), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1504), + [sym_identifier] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_macro_rules_BANG] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1504), + [anon_sym_RBRACE] = ACTIONS(1504), + [anon_sym_LBRACK] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1504), + [anon_sym_u8] = ACTIONS(1506), + [anon_sym_i8] = ACTIONS(1506), + [anon_sym_u16] = ACTIONS(1506), + [anon_sym_i16] = ACTIONS(1506), + [anon_sym_u32] = ACTIONS(1506), + [anon_sym_i32] = ACTIONS(1506), + [anon_sym_u64] = ACTIONS(1506), + [anon_sym_i64] = ACTIONS(1506), + [anon_sym_u128] = ACTIONS(1506), + [anon_sym_i128] = ACTIONS(1506), + [anon_sym_isize] = ACTIONS(1506), + [anon_sym_usize] = ACTIONS(1506), + [anon_sym_f32] = ACTIONS(1506), + [anon_sym_f64] = ACTIONS(1506), + [anon_sym_bool] = ACTIONS(1506), + [anon_sym_str] = ACTIONS(1506), + [anon_sym_char] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_async] = ACTIONS(1506), + [anon_sym_break] = ACTIONS(1506), + [anon_sym_const] = ACTIONS(1506), + [anon_sym_continue] = ACTIONS(1506), + [anon_sym_default] = ACTIONS(1506), + [anon_sym_enum] = ACTIONS(1506), + [anon_sym_fn] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1506), + [anon_sym_if] = ACTIONS(1506), + [anon_sym_impl] = ACTIONS(1506), + [anon_sym_let] = ACTIONS(1506), + [anon_sym_loop] = ACTIONS(1506), + [anon_sym_match] = ACTIONS(1506), + [anon_sym_mod] = ACTIONS(1506), + [anon_sym_pub] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1506), + [anon_sym_static] = ACTIONS(1506), + [anon_sym_struct] = ACTIONS(1506), + [anon_sym_trait] = ACTIONS(1506), + [anon_sym_type] = ACTIONS(1506), + [anon_sym_union] = ACTIONS(1506), + [anon_sym_unsafe] = ACTIONS(1506), + [anon_sym_use] = ACTIONS(1506), + [anon_sym_while] = ACTIONS(1506), + [anon_sym_POUND] = ACTIONS(1504), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1504), + [anon_sym_COLON_COLON] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), + [anon_sym_DOT_DOT] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1506), + [sym_integer_literal] = ACTIONS(1504), + [aux_sym_string_literal_token1] = ACTIONS(1504), + [sym_char_literal] = ACTIONS(1504), + [anon_sym_true] = ACTIONS(1506), + [anon_sym_false] = ACTIONS(1506), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1493), - [sym_super] = ACTIONS(1493), - [sym_crate] = ACTIONS(1493), - [sym_metavariable] = ACTIONS(1491), - [sym_raw_string_literal] = ACTIONS(1491), - [sym_float_literal] = ACTIONS(1491), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1504), + [sym_raw_string_literal] = ACTIONS(1504), + [sym_float_literal] = ACTIONS(1504), [sym_block_comment] = ACTIONS(3), }, [358] = { - [sym__token_pattern] = STATE(330), - [sym_token_tree_pattern] = STATE(330), - [sym_token_binding_pattern] = STATE(330), - [sym_token_repetition_pattern] = STATE(330), - [sym__literal] = STATE(330), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(330), - [sym_identifier] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1055), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1495), - [anon_sym_SQUOTE] = ACTIONS(1495), - [anon_sym_as] = ACTIONS(1495), - [anon_sym_async] = ACTIONS(1495), - [anon_sym_await] = 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_where] = ACTIONS(1495), - [anon_sym_while] = ACTIONS(1495), - [sym_mutable_specifier] = ACTIONS(1495), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1495), - [sym_super] = ACTIONS(1495), - [sym_crate] = ACTIONS(1495), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_macro_rules_BANG] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_RBRACE] = ACTIONS(1508), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_async] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_fn] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_impl] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_mod] = ACTIONS(1510), + [anon_sym_pub] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_struct] = ACTIONS(1510), + [anon_sym_trait] = ACTIONS(1510), + [anon_sym_type] = ACTIONS(1510), + [anon_sym_union] = ACTIONS(1510), + [anon_sym_unsafe] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_move] = ACTIONS(1510), + [sym_integer_literal] = ACTIONS(1508), + [aux_sym_string_literal_token1] = ACTIONS(1508), + [sym_char_literal] = ACTIONS(1508), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1510), + [sym_super] = ACTIONS(1510), + [sym_crate] = ACTIONS(1510), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), [sym_block_comment] = ACTIONS(3), }, [359] = { - [sym__token_pattern] = STATE(331), - [sym_token_tree_pattern] = STATE(331), - [sym_token_binding_pattern] = STATE(331), - [sym_token_repetition_pattern] = STATE(331), - [sym__literal] = STATE(331), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(331), - [sym_identifier] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1497), - [anon_sym_SQUOTE] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_await] = 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_where] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [sym_mutable_specifier] = ACTIONS(1497), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_crate] = ACTIONS(1497), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1512), + [sym_identifier] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_macro_rules_BANG] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1512), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_u8] = ACTIONS(1514), + [anon_sym_i8] = ACTIONS(1514), + [anon_sym_u16] = ACTIONS(1514), + [anon_sym_i16] = ACTIONS(1514), + [anon_sym_u32] = ACTIONS(1514), + [anon_sym_i32] = ACTIONS(1514), + [anon_sym_u64] = ACTIONS(1514), + [anon_sym_i64] = ACTIONS(1514), + [anon_sym_u128] = ACTIONS(1514), + [anon_sym_i128] = ACTIONS(1514), + [anon_sym_isize] = ACTIONS(1514), + [anon_sym_usize] = ACTIONS(1514), + [anon_sym_f32] = ACTIONS(1514), + [anon_sym_f64] = ACTIONS(1514), + [anon_sym_bool] = ACTIONS(1514), + [anon_sym_str] = ACTIONS(1514), + [anon_sym_char] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_async] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_default] = ACTIONS(1514), + [anon_sym_enum] = ACTIONS(1514), + [anon_sym_fn] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_impl] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_mod] = ACTIONS(1514), + [anon_sym_pub] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_static] = ACTIONS(1514), + [anon_sym_struct] = ACTIONS(1514), + [anon_sym_trait] = ACTIONS(1514), + [anon_sym_type] = ACTIONS(1514), + [anon_sym_union] = ACTIONS(1514), + [anon_sym_unsafe] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_COLON_COLON] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1514), + [sym_integer_literal] = ACTIONS(1512), + [aux_sym_string_literal_token1] = ACTIONS(1512), + [sym_char_literal] = ACTIONS(1512), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1514), + [sym_super] = ACTIONS(1514), + [sym_crate] = ACTIONS(1514), + [sym_metavariable] = ACTIONS(1512), + [sym_raw_string_literal] = ACTIONS(1512), + [sym_float_literal] = ACTIONS(1512), [sym_block_comment] = ACTIONS(3), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(1499), - [sym_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_u8] = ACTIONS(1501), - [anon_sym_i8] = ACTIONS(1501), - [anon_sym_u16] = ACTIONS(1501), - [anon_sym_i16] = ACTIONS(1501), - [anon_sym_u32] = ACTIONS(1501), - [anon_sym_i32] = ACTIONS(1501), - [anon_sym_u64] = ACTIONS(1501), - [anon_sym_i64] = ACTIONS(1501), - [anon_sym_u128] = ACTIONS(1501), - [anon_sym_i128] = ACTIONS(1501), - [anon_sym_isize] = ACTIONS(1501), - [anon_sym_usize] = ACTIONS(1501), - [anon_sym_f32] = ACTIONS(1501), - [anon_sym_f64] = ACTIONS(1501), - [anon_sym_bool] = ACTIONS(1501), - [anon_sym_str] = ACTIONS(1501), - [anon_sym_char] = ACTIONS(1501), - [anon_sym_SQUOTE] = ACTIONS(1501), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_macro_rules_BANG] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_u8] = ACTIONS(1518), + [anon_sym_i8] = ACTIONS(1518), + [anon_sym_u16] = ACTIONS(1518), + [anon_sym_i16] = ACTIONS(1518), + [anon_sym_u32] = ACTIONS(1518), + [anon_sym_i32] = ACTIONS(1518), + [anon_sym_u64] = ACTIONS(1518), + [anon_sym_i64] = ACTIONS(1518), + [anon_sym_u128] = ACTIONS(1518), + [anon_sym_i128] = ACTIONS(1518), + [anon_sym_isize] = ACTIONS(1518), + [anon_sym_usize] = ACTIONS(1518), + [anon_sym_f32] = ACTIONS(1518), + [anon_sym_f64] = ACTIONS(1518), + [anon_sym_bool] = ACTIONS(1518), + [anon_sym_str] = ACTIONS(1518), + [anon_sym_char] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1518), + [anon_sym_break] = ACTIONS(1518), + [anon_sym_const] = ACTIONS(1518), + [anon_sym_continue] = ACTIONS(1518), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_enum] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1518), + [anon_sym_for] = ACTIONS(1518), + [anon_sym_if] = ACTIONS(1518), + [anon_sym_impl] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1518), + [anon_sym_loop] = ACTIONS(1518), + [anon_sym_match] = ACTIONS(1518), + [anon_sym_mod] = ACTIONS(1518), + [anon_sym_pub] = ACTIONS(1518), + [anon_sym_return] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_struct] = ACTIONS(1518), + [anon_sym_trait] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_union] = ACTIONS(1518), + [anon_sym_unsafe] = ACTIONS(1518), + [anon_sym_use] = ACTIONS(1518), + [anon_sym_while] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1518), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1518), + [sym_integer_literal] = ACTIONS(1516), + [aux_sym_string_literal_token1] = ACTIONS(1516), + [sym_char_literal] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1518), + [anon_sym_false] = ACTIONS(1518), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1501), - [sym_super] = ACTIONS(1501), - [sym_crate] = ACTIONS(1501), - [sym_metavariable] = ACTIONS(1499), - [sym_raw_string_literal] = ACTIONS(1499), - [sym_float_literal] = ACTIONS(1499), + [sym_self] = ACTIONS(1518), + [sym_super] = ACTIONS(1518), + [sym_crate] = ACTIONS(1518), + [sym_metavariable] = ACTIONS(1516), + [sym_raw_string_literal] = ACTIONS(1516), + [sym_float_literal] = ACTIONS(1516), [sym_block_comment] = ACTIONS(3), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(1503), - [sym_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_u8] = ACTIONS(1505), - [anon_sym_i8] = ACTIONS(1505), - [anon_sym_u16] = ACTIONS(1505), - [anon_sym_i16] = ACTIONS(1505), - [anon_sym_u32] = ACTIONS(1505), - [anon_sym_i32] = ACTIONS(1505), - [anon_sym_u64] = ACTIONS(1505), - [anon_sym_i64] = ACTIONS(1505), - [anon_sym_u128] = ACTIONS(1505), - [anon_sym_i128] = ACTIONS(1505), - [anon_sym_isize] = ACTIONS(1505), - [anon_sym_usize] = ACTIONS(1505), - [anon_sym_f32] = ACTIONS(1505), - [anon_sym_f64] = ACTIONS(1505), - [anon_sym_bool] = ACTIONS(1505), - [anon_sym_str] = ACTIONS(1505), - [anon_sym_char] = ACTIONS(1505), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_macro_rules_BANG] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1520), + [anon_sym_RBRACE] = ACTIONS(1520), + [anon_sym_LBRACK] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_u8] = ACTIONS(1522), + [anon_sym_i8] = ACTIONS(1522), + [anon_sym_u16] = ACTIONS(1522), + [anon_sym_i16] = ACTIONS(1522), + [anon_sym_u32] = ACTIONS(1522), + [anon_sym_i32] = ACTIONS(1522), + [anon_sym_u64] = ACTIONS(1522), + [anon_sym_i64] = ACTIONS(1522), + [anon_sym_u128] = ACTIONS(1522), + [anon_sym_i128] = ACTIONS(1522), + [anon_sym_isize] = ACTIONS(1522), + [anon_sym_usize] = ACTIONS(1522), + [anon_sym_f32] = ACTIONS(1522), + [anon_sym_f64] = ACTIONS(1522), + [anon_sym_bool] = ACTIONS(1522), + [anon_sym_str] = ACTIONS(1522), + [anon_sym_char] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1522), + [anon_sym_async] = ACTIONS(1522), + [anon_sym_break] = ACTIONS(1522), + [anon_sym_const] = ACTIONS(1522), + [anon_sym_continue] = ACTIONS(1522), + [anon_sym_default] = ACTIONS(1522), + [anon_sym_enum] = ACTIONS(1522), + [anon_sym_fn] = ACTIONS(1522), + [anon_sym_for] = ACTIONS(1522), + [anon_sym_if] = ACTIONS(1522), + [anon_sym_impl] = ACTIONS(1522), + [anon_sym_let] = ACTIONS(1522), + [anon_sym_loop] = ACTIONS(1522), + [anon_sym_match] = ACTIONS(1522), + [anon_sym_mod] = ACTIONS(1522), + [anon_sym_pub] = ACTIONS(1522), + [anon_sym_return] = ACTIONS(1522), + [anon_sym_static] = ACTIONS(1522), + [anon_sym_struct] = ACTIONS(1522), + [anon_sym_trait] = ACTIONS(1522), + [anon_sym_type] = ACTIONS(1522), + [anon_sym_union] = ACTIONS(1522), + [anon_sym_unsafe] = ACTIONS(1522), + [anon_sym_use] = ACTIONS(1522), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_COLON_COLON] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1522), + [sym_integer_literal] = ACTIONS(1520), + [aux_sym_string_literal_token1] = ACTIONS(1520), + [sym_char_literal] = ACTIONS(1520), + [anon_sym_true] = ACTIONS(1522), + [anon_sym_false] = ACTIONS(1522), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1505), - [sym_super] = ACTIONS(1505), - [sym_crate] = ACTIONS(1505), - [sym_metavariable] = ACTIONS(1503), - [sym_raw_string_literal] = ACTIONS(1503), - [sym_float_literal] = ACTIONS(1503), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1520), + [sym_raw_string_literal] = ACTIONS(1520), + [sym_float_literal] = ACTIONS(1520), [sym_block_comment] = ACTIONS(3), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_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_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1526), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_macro_rules_BANG] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1524), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_u8] = ACTIONS(1526), + [anon_sym_i8] = ACTIONS(1526), + [anon_sym_u16] = ACTIONS(1526), + [anon_sym_i16] = ACTIONS(1526), + [anon_sym_u32] = ACTIONS(1526), + [anon_sym_i32] = ACTIONS(1526), + [anon_sym_u64] = ACTIONS(1526), + [anon_sym_i64] = ACTIONS(1526), + [anon_sym_u128] = ACTIONS(1526), + [anon_sym_i128] = ACTIONS(1526), + [anon_sym_isize] = ACTIONS(1526), + [anon_sym_usize] = ACTIONS(1526), + [anon_sym_f32] = ACTIONS(1526), + [anon_sym_f64] = ACTIONS(1526), + [anon_sym_bool] = ACTIONS(1526), + [anon_sym_str] = ACTIONS(1526), + [anon_sym_char] = ACTIONS(1526), + [anon_sym_SQUOTE] = ACTIONS(1526), + [anon_sym_async] = ACTIONS(1526), + [anon_sym_break] = ACTIONS(1526), + [anon_sym_const] = ACTIONS(1526), + [anon_sym_continue] = ACTIONS(1526), + [anon_sym_default] = ACTIONS(1526), + [anon_sym_enum] = ACTIONS(1526), + [anon_sym_fn] = ACTIONS(1526), + [anon_sym_for] = ACTIONS(1526), + [anon_sym_if] = ACTIONS(1526), + [anon_sym_impl] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1526), + [anon_sym_loop] = ACTIONS(1526), + [anon_sym_match] = ACTIONS(1526), + [anon_sym_mod] = ACTIONS(1526), + [anon_sym_pub] = ACTIONS(1526), + [anon_sym_return] = ACTIONS(1526), + [anon_sym_static] = ACTIONS(1526), + [anon_sym_struct] = ACTIONS(1526), + [anon_sym_trait] = ACTIONS(1526), + [anon_sym_type] = ACTIONS(1526), + [anon_sym_union] = ACTIONS(1526), + [anon_sym_unsafe] = ACTIONS(1526), + [anon_sym_use] = ACTIONS(1526), + [anon_sym_while] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_COLON_COLON] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1526), + [sym_integer_literal] = ACTIONS(1524), + [aux_sym_string_literal_token1] = ACTIONS(1524), + [sym_char_literal] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1526), + [anon_sym_false] = ACTIONS(1526), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym_raw_string_literal] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [sym_self] = ACTIONS(1526), + [sym_super] = ACTIONS(1526), + [sym_crate] = ACTIONS(1526), + [sym_metavariable] = ACTIONS(1524), + [sym_raw_string_literal] = ACTIONS(1524), + [sym_float_literal] = ACTIONS(1524), [sym_block_comment] = ACTIONS(3), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(1511), - [sym_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_u8] = ACTIONS(1513), - [anon_sym_i8] = ACTIONS(1513), - [anon_sym_u16] = ACTIONS(1513), - [anon_sym_i16] = ACTIONS(1513), - [anon_sym_u32] = ACTIONS(1513), - [anon_sym_i32] = ACTIONS(1513), - [anon_sym_u64] = ACTIONS(1513), - [anon_sym_i64] = ACTIONS(1513), - [anon_sym_u128] = ACTIONS(1513), - [anon_sym_i128] = ACTIONS(1513), - [anon_sym_isize] = ACTIONS(1513), - [anon_sym_usize] = ACTIONS(1513), - [anon_sym_f32] = ACTIONS(1513), - [anon_sym_f64] = ACTIONS(1513), - [anon_sym_bool] = ACTIONS(1513), - [anon_sym_str] = ACTIONS(1513), - [anon_sym_char] = ACTIONS(1513), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1528), + [sym_identifier] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1528), + [anon_sym_macro_rules_BANG] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_STAR] = ACTIONS(1528), + [anon_sym_u8] = ACTIONS(1530), + [anon_sym_i8] = ACTIONS(1530), + [anon_sym_u16] = ACTIONS(1530), + [anon_sym_i16] = ACTIONS(1530), + [anon_sym_u32] = ACTIONS(1530), + [anon_sym_i32] = ACTIONS(1530), + [anon_sym_u64] = ACTIONS(1530), + [anon_sym_i64] = ACTIONS(1530), + [anon_sym_u128] = ACTIONS(1530), + [anon_sym_i128] = ACTIONS(1530), + [anon_sym_isize] = ACTIONS(1530), + [anon_sym_usize] = ACTIONS(1530), + [anon_sym_f32] = ACTIONS(1530), + [anon_sym_f64] = ACTIONS(1530), + [anon_sym_bool] = ACTIONS(1530), + [anon_sym_str] = ACTIONS(1530), + [anon_sym_char] = ACTIONS(1530), + [anon_sym_SQUOTE] = ACTIONS(1530), + [anon_sym_async] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_continue] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_enum] = ACTIONS(1530), + [anon_sym_fn] = ACTIONS(1530), + [anon_sym_for] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1530), + [anon_sym_impl] = ACTIONS(1530), + [anon_sym_let] = ACTIONS(1530), + [anon_sym_loop] = ACTIONS(1530), + [anon_sym_match] = ACTIONS(1530), + [anon_sym_mod] = ACTIONS(1530), + [anon_sym_pub] = ACTIONS(1530), + [anon_sym_return] = ACTIONS(1530), + [anon_sym_static] = ACTIONS(1530), + [anon_sym_struct] = ACTIONS(1530), + [anon_sym_trait] = ACTIONS(1530), + [anon_sym_type] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_unsafe] = ACTIONS(1530), + [anon_sym_use] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_BANG] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1528), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym_AMP] = ACTIONS(1528), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_PIPE] = ACTIONS(1528), + [anon_sym_move] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1528), + [aux_sym_string_literal_token1] = ACTIONS(1528), + [sym_char_literal] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1513), - [sym_super] = ACTIONS(1513), - [sym_crate] = ACTIONS(1513), - [sym_metavariable] = ACTIONS(1511), - [sym_raw_string_literal] = ACTIONS(1511), - [sym_float_literal] = ACTIONS(1511), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1530), + [sym_crate] = ACTIONS(1530), + [sym_metavariable] = ACTIONS(1528), + [sym_raw_string_literal] = ACTIONS(1528), + [sym_float_literal] = ACTIONS(1528), [sym_block_comment] = ACTIONS(3), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(1515), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_macro_rules_BANG] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_impl] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_mod] = ACTIONS(1534), + [anon_sym_pub] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_trait] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_use] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1532), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_AMP] = ACTIONS(1532), + [anon_sym_DOT_DOT] = ACTIONS(1532), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PIPE] = ACTIONS(1532), + [anon_sym_move] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1517), - [sym_super] = ACTIONS(1517), - [sym_crate] = ACTIONS(1517), - [sym_metavariable] = ACTIONS(1515), - [sym_raw_string_literal] = ACTIONS(1515), - [sym_float_literal] = ACTIONS(1515), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym_raw_string_literal] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), [sym_block_comment] = ACTIONS(3), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(1519), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_AMP] = ACTIONS(1536), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_PIPE] = ACTIONS(1536), + [anon_sym_move] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1521), - [sym_super] = ACTIONS(1521), - [sym_crate] = ACTIONS(1521), - [sym_metavariable] = ACTIONS(1519), - [sym_raw_string_literal] = ACTIONS(1519), - [sym_float_literal] = ACTIONS(1519), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym_raw_string_literal] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), [sym_block_comment] = ACTIONS(3), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(1523), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_STAR] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_AMP] = ACTIONS(1540), + [anon_sym_DOT_DOT] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_PIPE] = ACTIONS(1540), + [anon_sym_move] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1525), - [sym_super] = ACTIONS(1525), - [sym_crate] = ACTIONS(1525), - [sym_metavariable] = ACTIONS(1523), - [sym_raw_string_literal] = ACTIONS(1523), - [sym_float_literal] = ACTIONS(1523), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym_raw_string_literal] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), [sym_block_comment] = ACTIONS(3), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(1527), - [sym_identifier] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1527), - [anon_sym_macro_rules_BANG] = ACTIONS(1527), - [anon_sym_LPAREN] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1527), - [anon_sym_u8] = ACTIONS(1529), - [anon_sym_i8] = ACTIONS(1529), - [anon_sym_u16] = ACTIONS(1529), - [anon_sym_i16] = ACTIONS(1529), - [anon_sym_u32] = ACTIONS(1529), - [anon_sym_i32] = ACTIONS(1529), - [anon_sym_u64] = ACTIONS(1529), - [anon_sym_i64] = ACTIONS(1529), - [anon_sym_u128] = ACTIONS(1529), - [anon_sym_i128] = ACTIONS(1529), - [anon_sym_isize] = ACTIONS(1529), - [anon_sym_usize] = ACTIONS(1529), - [anon_sym_f32] = ACTIONS(1529), - [anon_sym_f64] = ACTIONS(1529), - [anon_sym_bool] = ACTIONS(1529), - [anon_sym_str] = ACTIONS(1529), - [anon_sym_char] = ACTIONS(1529), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_macro_rules_BANG] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_LBRACE] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1544), + [anon_sym_STAR] = ACTIONS(1544), + [anon_sym_u8] = ACTIONS(1546), + [anon_sym_i8] = ACTIONS(1546), + [anon_sym_u16] = ACTIONS(1546), + [anon_sym_i16] = ACTIONS(1546), + [anon_sym_u32] = ACTIONS(1546), + [anon_sym_i32] = ACTIONS(1546), + [anon_sym_u64] = ACTIONS(1546), + [anon_sym_i64] = ACTIONS(1546), + [anon_sym_u128] = ACTIONS(1546), + [anon_sym_i128] = ACTIONS(1546), + [anon_sym_isize] = ACTIONS(1546), + [anon_sym_usize] = ACTIONS(1546), + [anon_sym_f32] = ACTIONS(1546), + [anon_sym_f64] = ACTIONS(1546), + [anon_sym_bool] = ACTIONS(1546), + [anon_sym_str] = ACTIONS(1546), + [anon_sym_char] = ACTIONS(1546), + [anon_sym_SQUOTE] = ACTIONS(1546), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_break] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1546), + [anon_sym_continue] = ACTIONS(1546), + [anon_sym_default] = ACTIONS(1546), + [anon_sym_enum] = ACTIONS(1546), + [anon_sym_fn] = ACTIONS(1546), + [anon_sym_for] = ACTIONS(1546), + [anon_sym_if] = ACTIONS(1546), + [anon_sym_impl] = ACTIONS(1546), + [anon_sym_let] = ACTIONS(1546), + [anon_sym_loop] = ACTIONS(1546), + [anon_sym_match] = ACTIONS(1546), + [anon_sym_mod] = ACTIONS(1546), + [anon_sym_pub] = ACTIONS(1546), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1546), + [anon_sym_struct] = ACTIONS(1546), + [anon_sym_trait] = ACTIONS(1546), + [anon_sym_type] = ACTIONS(1546), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1546), + [anon_sym_use] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1546), + [anon_sym_POUND] = ACTIONS(1544), + [anon_sym_BANG] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1546), + [anon_sym_LT] = ACTIONS(1544), + [anon_sym_COLON_COLON] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_move] = ACTIONS(1546), + [sym_integer_literal] = ACTIONS(1544), + [aux_sym_string_literal_token1] = ACTIONS(1544), + [sym_char_literal] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1546), + [anon_sym_false] = ACTIONS(1546), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_crate] = ACTIONS(1529), - [sym_metavariable] = ACTIONS(1527), - [sym_raw_string_literal] = ACTIONS(1527), - [sym_float_literal] = ACTIONS(1527), + [sym_self] = ACTIONS(1546), + [sym_super] = ACTIONS(1546), + [sym_crate] = ACTIONS(1546), + [sym_metavariable] = ACTIONS(1544), + [sym_raw_string_literal] = ACTIONS(1544), + [sym_float_literal] = ACTIONS(1544), [sym_block_comment] = ACTIONS(3), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(1531), - [sym_identifier] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_macro_rules_BANG] = ACTIONS(1531), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_STAR] = ACTIONS(1531), - [anon_sym_u8] = ACTIONS(1533), - [anon_sym_i8] = ACTIONS(1533), - [anon_sym_u16] = ACTIONS(1533), - [anon_sym_i16] = ACTIONS(1533), - [anon_sym_u32] = ACTIONS(1533), - [anon_sym_i32] = ACTIONS(1533), - [anon_sym_u64] = ACTIONS(1533), - [anon_sym_i64] = ACTIONS(1533), - [anon_sym_u128] = ACTIONS(1533), - [anon_sym_i128] = ACTIONS(1533), - [anon_sym_isize] = ACTIONS(1533), - [anon_sym_usize] = ACTIONS(1533), - [anon_sym_f32] = ACTIONS(1533), - [anon_sym_f64] = ACTIONS(1533), - [anon_sym_bool] = ACTIONS(1533), - [anon_sym_str] = ACTIONS(1533), - [anon_sym_char] = ACTIONS(1533), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1548), + [sym_identifier] = ACTIONS(1550), + [anon_sym_SEMI] = ACTIONS(1548), + [anon_sym_macro_rules_BANG] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(1548), + [anon_sym_RBRACE] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1548), + [anon_sym_STAR] = ACTIONS(1548), + [anon_sym_u8] = ACTIONS(1550), + [anon_sym_i8] = ACTIONS(1550), + [anon_sym_u16] = ACTIONS(1550), + [anon_sym_i16] = ACTIONS(1550), + [anon_sym_u32] = ACTIONS(1550), + [anon_sym_i32] = ACTIONS(1550), + [anon_sym_u64] = ACTIONS(1550), + [anon_sym_i64] = ACTIONS(1550), + [anon_sym_u128] = ACTIONS(1550), + [anon_sym_i128] = ACTIONS(1550), + [anon_sym_isize] = ACTIONS(1550), + [anon_sym_usize] = ACTIONS(1550), + [anon_sym_f32] = ACTIONS(1550), + [anon_sym_f64] = ACTIONS(1550), + [anon_sym_bool] = ACTIONS(1550), + [anon_sym_str] = ACTIONS(1550), + [anon_sym_char] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1550), + [anon_sym_async] = ACTIONS(1550), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_const] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_default] = ACTIONS(1550), + [anon_sym_enum] = ACTIONS(1550), + [anon_sym_fn] = ACTIONS(1550), + [anon_sym_for] = ACTIONS(1550), + [anon_sym_if] = ACTIONS(1550), + [anon_sym_impl] = ACTIONS(1550), + [anon_sym_let] = ACTIONS(1550), + [anon_sym_loop] = ACTIONS(1550), + [anon_sym_match] = ACTIONS(1550), + [anon_sym_mod] = ACTIONS(1550), + [anon_sym_pub] = ACTIONS(1550), + [anon_sym_return] = ACTIONS(1550), + [anon_sym_static] = ACTIONS(1550), + [anon_sym_struct] = ACTIONS(1550), + [anon_sym_trait] = ACTIONS(1550), + [anon_sym_type] = ACTIONS(1550), + [anon_sym_union] = ACTIONS(1550), + [anon_sym_unsafe] = ACTIONS(1550), + [anon_sym_use] = ACTIONS(1550), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1548), + [anon_sym_BANG] = ACTIONS(1548), + [anon_sym_extern] = ACTIONS(1550), + [anon_sym_LT] = ACTIONS(1548), + [anon_sym_COLON_COLON] = ACTIONS(1548), + [anon_sym_AMP] = ACTIONS(1548), + [anon_sym_DOT_DOT] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PIPE] = ACTIONS(1548), + [anon_sym_move] = ACTIONS(1550), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1548), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1550), + [anon_sym_false] = ACTIONS(1550), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_crate] = ACTIONS(1533), - [sym_metavariable] = ACTIONS(1531), - [sym_raw_string_literal] = ACTIONS(1531), - [sym_float_literal] = ACTIONS(1531), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1548), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), [sym_block_comment] = ACTIONS(3), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(1535), - [sym_identifier] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_macro_rules_BANG] = ACTIONS(1535), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_STAR] = ACTIONS(1535), - [anon_sym_u8] = ACTIONS(1537), - [anon_sym_i8] = ACTIONS(1537), - [anon_sym_u16] = ACTIONS(1537), - [anon_sym_i16] = ACTIONS(1537), - [anon_sym_u32] = ACTIONS(1537), - [anon_sym_i32] = ACTIONS(1537), - [anon_sym_u64] = ACTIONS(1537), - [anon_sym_i64] = ACTIONS(1537), - [anon_sym_u128] = ACTIONS(1537), - [anon_sym_i128] = ACTIONS(1537), - [anon_sym_isize] = ACTIONS(1537), - [anon_sym_usize] = ACTIONS(1537), - [anon_sym_f32] = ACTIONS(1537), - [anon_sym_f64] = ACTIONS(1537), - [anon_sym_bool] = ACTIONS(1537), - [anon_sym_str] = ACTIONS(1537), - [anon_sym_char] = ACTIONS(1537), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1552), + [sym_identifier] = ACTIONS(1554), + [anon_sym_SEMI] = ACTIONS(1552), + [anon_sym_macro_rules_BANG] = ACTIONS(1552), + [anon_sym_LPAREN] = ACTIONS(1552), + [anon_sym_LBRACE] = ACTIONS(1552), + [anon_sym_RBRACE] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_u8] = ACTIONS(1554), + [anon_sym_i8] = ACTIONS(1554), + [anon_sym_u16] = ACTIONS(1554), + [anon_sym_i16] = ACTIONS(1554), + [anon_sym_u32] = ACTIONS(1554), + [anon_sym_i32] = ACTIONS(1554), + [anon_sym_u64] = ACTIONS(1554), + [anon_sym_i64] = ACTIONS(1554), + [anon_sym_u128] = ACTIONS(1554), + [anon_sym_i128] = ACTIONS(1554), + [anon_sym_isize] = ACTIONS(1554), + [anon_sym_usize] = ACTIONS(1554), + [anon_sym_f32] = ACTIONS(1554), + [anon_sym_f64] = ACTIONS(1554), + [anon_sym_bool] = ACTIONS(1554), + [anon_sym_str] = ACTIONS(1554), + [anon_sym_char] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1554), + [anon_sym_async] = ACTIONS(1554), + [anon_sym_break] = ACTIONS(1554), + [anon_sym_const] = ACTIONS(1554), + [anon_sym_continue] = ACTIONS(1554), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_enum] = ACTIONS(1554), + [anon_sym_fn] = ACTIONS(1554), + [anon_sym_for] = ACTIONS(1554), + [anon_sym_if] = ACTIONS(1554), + [anon_sym_impl] = ACTIONS(1554), + [anon_sym_let] = ACTIONS(1554), + [anon_sym_loop] = ACTIONS(1554), + [anon_sym_match] = ACTIONS(1554), + [anon_sym_mod] = ACTIONS(1554), + [anon_sym_pub] = ACTIONS(1554), + [anon_sym_return] = ACTIONS(1554), + [anon_sym_static] = ACTIONS(1554), + [anon_sym_struct] = ACTIONS(1554), + [anon_sym_trait] = ACTIONS(1554), + [anon_sym_type] = ACTIONS(1554), + [anon_sym_union] = ACTIONS(1554), + [anon_sym_unsafe] = ACTIONS(1554), + [anon_sym_use] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1554), + [anon_sym_POUND] = ACTIONS(1552), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1554), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_COLON_COLON] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1554), + [sym_integer_literal] = ACTIONS(1552), + [aux_sym_string_literal_token1] = ACTIONS(1552), + [sym_char_literal] = ACTIONS(1552), + [anon_sym_true] = ACTIONS(1554), + [anon_sym_false] = ACTIONS(1554), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_crate] = ACTIONS(1537), - [sym_metavariable] = ACTIONS(1535), - [sym_raw_string_literal] = ACTIONS(1535), - [sym_float_literal] = ACTIONS(1535), + [sym_self] = ACTIONS(1554), + [sym_super] = ACTIONS(1554), + [sym_crate] = ACTIONS(1554), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1552), + [sym_float_literal] = ACTIONS(1552), [sym_block_comment] = ACTIONS(3), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(1539), - [sym_identifier] = ACTIONS(1541), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_macro_rules_BANG] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_STAR] = ACTIONS(1539), - [anon_sym_u8] = ACTIONS(1541), - [anon_sym_i8] = ACTIONS(1541), - [anon_sym_u16] = ACTIONS(1541), - [anon_sym_i16] = ACTIONS(1541), - [anon_sym_u32] = ACTIONS(1541), - [anon_sym_i32] = ACTIONS(1541), - [anon_sym_u64] = ACTIONS(1541), - [anon_sym_i64] = ACTIONS(1541), - [anon_sym_u128] = ACTIONS(1541), - [anon_sym_i128] = ACTIONS(1541), - [anon_sym_isize] = ACTIONS(1541), - [anon_sym_usize] = ACTIONS(1541), - [anon_sym_f32] = ACTIONS(1541), - [anon_sym_f64] = ACTIONS(1541), - [anon_sym_bool] = ACTIONS(1541), - [anon_sym_str] = ACTIONS(1541), - [anon_sym_char] = ACTIONS(1541), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1556), + [sym_identifier] = ACTIONS(1558), + [anon_sym_SEMI] = ACTIONS(1556), + [anon_sym_macro_rules_BANG] = ACTIONS(1556), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(1556), + [anon_sym_u8] = ACTIONS(1558), + [anon_sym_i8] = ACTIONS(1558), + [anon_sym_u16] = ACTIONS(1558), + [anon_sym_i16] = ACTIONS(1558), + [anon_sym_u32] = ACTIONS(1558), + [anon_sym_i32] = ACTIONS(1558), + [anon_sym_u64] = ACTIONS(1558), + [anon_sym_i64] = ACTIONS(1558), + [anon_sym_u128] = ACTIONS(1558), + [anon_sym_i128] = ACTIONS(1558), + [anon_sym_isize] = ACTIONS(1558), + [anon_sym_usize] = ACTIONS(1558), + [anon_sym_f32] = ACTIONS(1558), + [anon_sym_f64] = ACTIONS(1558), + [anon_sym_bool] = ACTIONS(1558), + [anon_sym_str] = ACTIONS(1558), + [anon_sym_char] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1558), + [anon_sym_async] = ACTIONS(1558), + [anon_sym_break] = ACTIONS(1558), + [anon_sym_const] = ACTIONS(1558), + [anon_sym_continue] = ACTIONS(1558), + [anon_sym_default] = ACTIONS(1558), + [anon_sym_enum] = ACTIONS(1558), + [anon_sym_fn] = ACTIONS(1558), + [anon_sym_for] = ACTIONS(1558), + [anon_sym_if] = ACTIONS(1558), + [anon_sym_impl] = ACTIONS(1558), + [anon_sym_let] = ACTIONS(1558), + [anon_sym_loop] = ACTIONS(1558), + [anon_sym_match] = ACTIONS(1558), + [anon_sym_mod] = ACTIONS(1558), + [anon_sym_pub] = ACTIONS(1558), + [anon_sym_return] = ACTIONS(1558), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_struct] = ACTIONS(1558), + [anon_sym_trait] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_union] = ACTIONS(1558), + [anon_sym_unsafe] = ACTIONS(1558), + [anon_sym_use] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(1556), + [anon_sym_BANG] = ACTIONS(1556), + [anon_sym_extern] = ACTIONS(1558), + [anon_sym_LT] = ACTIONS(1556), + [anon_sym_COLON_COLON] = ACTIONS(1556), + [anon_sym_AMP] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1556), + [anon_sym_DASH] = ACTIONS(1556), + [anon_sym_PIPE] = ACTIONS(1556), + [anon_sym_move] = ACTIONS(1558), + [sym_integer_literal] = ACTIONS(1556), + [aux_sym_string_literal_token1] = ACTIONS(1556), + [sym_char_literal] = ACTIONS(1556), + [anon_sym_true] = ACTIONS(1558), + [anon_sym_false] = ACTIONS(1558), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1541), - [sym_super] = ACTIONS(1541), - [sym_crate] = ACTIONS(1541), - [sym_metavariable] = ACTIONS(1539), - [sym_raw_string_literal] = ACTIONS(1539), - [sym_float_literal] = ACTIONS(1539), + [sym_self] = ACTIONS(1558), + [sym_super] = ACTIONS(1558), + [sym_crate] = ACTIONS(1558), + [sym_metavariable] = ACTIONS(1556), + [sym_raw_string_literal] = ACTIONS(1556), + [sym_float_literal] = ACTIONS(1556), [sym_block_comment] = ACTIONS(3), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(1543), - [sym_identifier] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_macro_rules_BANG] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1543), - [anon_sym_RBRACE] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1543), - [anon_sym_u8] = ACTIONS(1545), - [anon_sym_i8] = ACTIONS(1545), - [anon_sym_u16] = ACTIONS(1545), - [anon_sym_i16] = ACTIONS(1545), - [anon_sym_u32] = ACTIONS(1545), - [anon_sym_i32] = ACTIONS(1545), - [anon_sym_u64] = ACTIONS(1545), - [anon_sym_i64] = ACTIONS(1545), - [anon_sym_u128] = ACTIONS(1545), - [anon_sym_i128] = ACTIONS(1545), - [anon_sym_isize] = ACTIONS(1545), - [anon_sym_usize] = ACTIONS(1545), - [anon_sym_f32] = ACTIONS(1545), - [anon_sym_f64] = ACTIONS(1545), - [anon_sym_bool] = ACTIONS(1545), - [anon_sym_str] = ACTIONS(1545), - [anon_sym_char] = ACTIONS(1545), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1560), + [sym_identifier] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1560), + [anon_sym_macro_rules_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1560), + [anon_sym_STAR] = ACTIONS(1560), + [anon_sym_u8] = ACTIONS(1562), + [anon_sym_i8] = ACTIONS(1562), + [anon_sym_u16] = ACTIONS(1562), + [anon_sym_i16] = ACTIONS(1562), + [anon_sym_u32] = ACTIONS(1562), + [anon_sym_i32] = ACTIONS(1562), + [anon_sym_u64] = ACTIONS(1562), + [anon_sym_i64] = ACTIONS(1562), + [anon_sym_u128] = ACTIONS(1562), + [anon_sym_i128] = ACTIONS(1562), + [anon_sym_isize] = ACTIONS(1562), + [anon_sym_usize] = ACTIONS(1562), + [anon_sym_f32] = ACTIONS(1562), + [anon_sym_f64] = ACTIONS(1562), + [anon_sym_bool] = ACTIONS(1562), + [anon_sym_str] = ACTIONS(1562), + [anon_sym_char] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1562), + [anon_sym_async] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1562), + [anon_sym_const] = ACTIONS(1562), + [anon_sym_continue] = ACTIONS(1562), + [anon_sym_default] = ACTIONS(1562), + [anon_sym_enum] = ACTIONS(1562), + [anon_sym_fn] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1562), + [anon_sym_if] = ACTIONS(1562), + [anon_sym_impl] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1562), + [anon_sym_loop] = ACTIONS(1562), + [anon_sym_match] = ACTIONS(1562), + [anon_sym_mod] = ACTIONS(1562), + [anon_sym_pub] = ACTIONS(1562), + [anon_sym_return] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1562), + [anon_sym_struct] = ACTIONS(1562), + [anon_sym_trait] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1562), + [anon_sym_union] = ACTIONS(1562), + [anon_sym_unsafe] = ACTIONS(1562), + [anon_sym_use] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1562), + [anon_sym_POUND] = ACTIONS(1560), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1562), + [anon_sym_LT] = ACTIONS(1560), + [anon_sym_COLON_COLON] = ACTIONS(1560), + [anon_sym_AMP] = ACTIONS(1560), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1560), + [anon_sym_move] = ACTIONS(1562), + [sym_integer_literal] = ACTIONS(1560), + [aux_sym_string_literal_token1] = ACTIONS(1560), + [sym_char_literal] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1562), + [anon_sym_false] = ACTIONS(1562), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1545), - [sym_super] = ACTIONS(1545), - [sym_crate] = ACTIONS(1545), - [sym_metavariable] = ACTIONS(1543), - [sym_raw_string_literal] = ACTIONS(1543), - [sym_float_literal] = ACTIONS(1543), + [sym_self] = ACTIONS(1562), + [sym_super] = ACTIONS(1562), + [sym_crate] = ACTIONS(1562), + [sym_metavariable] = ACTIONS(1560), + [sym_raw_string_literal] = ACTIONS(1560), + [sym_float_literal] = ACTIONS(1560), [sym_block_comment] = ACTIONS(3), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(1547), - [sym_identifier] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_macro_rules_BANG] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_u8] = ACTIONS(1549), - [anon_sym_i8] = ACTIONS(1549), - [anon_sym_u16] = ACTIONS(1549), - [anon_sym_i16] = ACTIONS(1549), - [anon_sym_u32] = ACTIONS(1549), - [anon_sym_i32] = ACTIONS(1549), - [anon_sym_u64] = ACTIONS(1549), - [anon_sym_i64] = ACTIONS(1549), - [anon_sym_u128] = ACTIONS(1549), - [anon_sym_i128] = ACTIONS(1549), - [anon_sym_isize] = ACTIONS(1549), - [anon_sym_usize] = ACTIONS(1549), - [anon_sym_f32] = ACTIONS(1549), - [anon_sym_f64] = ACTIONS(1549), - [anon_sym_bool] = ACTIONS(1549), - [anon_sym_str] = ACTIONS(1549), - [anon_sym_char] = ACTIONS(1549), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1564), + [sym_identifier] = ACTIONS(1566), + [anon_sym_SEMI] = ACTIONS(1564), + [anon_sym_macro_rules_BANG] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1564), + [anon_sym_RBRACE] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1564), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1566), + [anon_sym_async] = ACTIONS(1566), + [anon_sym_break] = ACTIONS(1566), + [anon_sym_const] = ACTIONS(1566), + [anon_sym_continue] = ACTIONS(1566), + [anon_sym_default] = ACTIONS(1566), + [anon_sym_enum] = ACTIONS(1566), + [anon_sym_fn] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1566), + [anon_sym_if] = ACTIONS(1566), + [anon_sym_impl] = ACTIONS(1566), + [anon_sym_let] = ACTIONS(1566), + [anon_sym_loop] = ACTIONS(1566), + [anon_sym_match] = ACTIONS(1566), + [anon_sym_mod] = ACTIONS(1566), + [anon_sym_pub] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1566), + [anon_sym_static] = ACTIONS(1566), + [anon_sym_struct] = ACTIONS(1566), + [anon_sym_trait] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1566), + [anon_sym_union] = ACTIONS(1566), + [anon_sym_unsafe] = ACTIONS(1566), + [anon_sym_use] = ACTIONS(1566), + [anon_sym_while] = ACTIONS(1566), + [anon_sym_POUND] = ACTIONS(1564), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1564), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_DOT_DOT] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_move] = ACTIONS(1566), + [sym_integer_literal] = ACTIONS(1564), + [aux_sym_string_literal_token1] = ACTIONS(1564), + [sym_char_literal] = ACTIONS(1564), + [anon_sym_true] = ACTIONS(1566), + [anon_sym_false] = ACTIONS(1566), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1549), - [sym_super] = ACTIONS(1549), - [sym_crate] = ACTIONS(1549), - [sym_metavariable] = ACTIONS(1547), - [sym_raw_string_literal] = ACTIONS(1547), - [sym_float_literal] = ACTIONS(1547), + [sym_self] = ACTIONS(1566), + [sym_super] = ACTIONS(1566), + [sym_crate] = ACTIONS(1566), + [sym_metavariable] = ACTIONS(1564), + [sym_raw_string_literal] = ACTIONS(1564), + [sym_float_literal] = ACTIONS(1564), [sym_block_comment] = ACTIONS(3), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(1551), - [sym_identifier] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_macro_rules_BANG] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1551), - [anon_sym_LBRACE] = ACTIONS(1551), - [anon_sym_RBRACE] = ACTIONS(1551), - [anon_sym_LBRACK] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_u8] = ACTIONS(1553), - [anon_sym_i8] = ACTIONS(1553), - [anon_sym_u16] = ACTIONS(1553), - [anon_sym_i16] = ACTIONS(1553), - [anon_sym_u32] = ACTIONS(1553), - [anon_sym_i32] = ACTIONS(1553), - [anon_sym_u64] = ACTIONS(1553), - [anon_sym_i64] = ACTIONS(1553), - [anon_sym_u128] = ACTIONS(1553), - [anon_sym_i128] = ACTIONS(1553), - [anon_sym_isize] = ACTIONS(1553), - [anon_sym_usize] = ACTIONS(1553), - [anon_sym_f32] = ACTIONS(1553), - [anon_sym_f64] = ACTIONS(1553), - [anon_sym_bool] = ACTIONS(1553), - [anon_sym_str] = ACTIONS(1553), - [anon_sym_char] = ACTIONS(1553), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1568), + [sym_identifier] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1568), + [anon_sym_macro_rules_BANG] = ACTIONS(1568), + [anon_sym_LPAREN] = ACTIONS(1568), + [anon_sym_LBRACE] = ACTIONS(1568), + [anon_sym_RBRACE] = ACTIONS(1568), + [anon_sym_LBRACK] = ACTIONS(1568), + [anon_sym_STAR] = ACTIONS(1568), + [anon_sym_u8] = ACTIONS(1570), + [anon_sym_i8] = ACTIONS(1570), + [anon_sym_u16] = ACTIONS(1570), + [anon_sym_i16] = ACTIONS(1570), + [anon_sym_u32] = ACTIONS(1570), + [anon_sym_i32] = ACTIONS(1570), + [anon_sym_u64] = ACTIONS(1570), + [anon_sym_i64] = ACTIONS(1570), + [anon_sym_u128] = ACTIONS(1570), + [anon_sym_i128] = ACTIONS(1570), + [anon_sym_isize] = ACTIONS(1570), + [anon_sym_usize] = ACTIONS(1570), + [anon_sym_f32] = ACTIONS(1570), + [anon_sym_f64] = ACTIONS(1570), + [anon_sym_bool] = ACTIONS(1570), + [anon_sym_str] = ACTIONS(1570), + [anon_sym_char] = ACTIONS(1570), + [anon_sym_SQUOTE] = ACTIONS(1570), + [anon_sym_async] = ACTIONS(1570), + [anon_sym_break] = ACTIONS(1570), + [anon_sym_const] = ACTIONS(1570), + [anon_sym_continue] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1570), + [anon_sym_enum] = ACTIONS(1570), + [anon_sym_fn] = ACTIONS(1570), + [anon_sym_for] = ACTIONS(1570), + [anon_sym_if] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1570), + [anon_sym_loop] = ACTIONS(1570), + [anon_sym_match] = ACTIONS(1570), + [anon_sym_mod] = ACTIONS(1570), + [anon_sym_pub] = ACTIONS(1570), + [anon_sym_return] = ACTIONS(1570), + [anon_sym_static] = ACTIONS(1570), + [anon_sym_struct] = ACTIONS(1570), + [anon_sym_trait] = ACTIONS(1570), + [anon_sym_type] = ACTIONS(1570), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1570), + [anon_sym_use] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_extern] = ACTIONS(1570), + [anon_sym_LT] = ACTIONS(1568), + [anon_sym_COLON_COLON] = ACTIONS(1568), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_DOT_DOT] = ACTIONS(1568), + [anon_sym_DASH] = ACTIONS(1568), + [anon_sym_PIPE] = ACTIONS(1568), + [anon_sym_move] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1568), + [aux_sym_string_literal_token1] = ACTIONS(1568), + [sym_char_literal] = ACTIONS(1568), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_crate] = ACTIONS(1553), - [sym_metavariable] = ACTIONS(1551), - [sym_raw_string_literal] = ACTIONS(1551), - [sym_float_literal] = ACTIONS(1551), + [sym_self] = ACTIONS(1570), + [sym_super] = ACTIONS(1570), + [sym_crate] = ACTIONS(1570), + [sym_metavariable] = ACTIONS(1568), + [sym_raw_string_literal] = ACTIONS(1568), + [sym_float_literal] = ACTIONS(1568), [sym_block_comment] = ACTIONS(3), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(1555), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1572), + [sym_identifier] = ACTIONS(1574), + [anon_sym_SEMI] = ACTIONS(1572), + [anon_sym_macro_rules_BANG] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACK] = ACTIONS(1572), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_u8] = ACTIONS(1574), + [anon_sym_i8] = ACTIONS(1574), + [anon_sym_u16] = ACTIONS(1574), + [anon_sym_i16] = ACTIONS(1574), + [anon_sym_u32] = ACTIONS(1574), + [anon_sym_i32] = ACTIONS(1574), + [anon_sym_u64] = ACTIONS(1574), + [anon_sym_i64] = ACTIONS(1574), + [anon_sym_u128] = ACTIONS(1574), + [anon_sym_i128] = ACTIONS(1574), + [anon_sym_isize] = ACTIONS(1574), + [anon_sym_usize] = ACTIONS(1574), + [anon_sym_f32] = ACTIONS(1574), + [anon_sym_f64] = ACTIONS(1574), + [anon_sym_bool] = ACTIONS(1574), + [anon_sym_str] = ACTIONS(1574), + [anon_sym_char] = ACTIONS(1574), + [anon_sym_SQUOTE] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1574), + [anon_sym_break] = ACTIONS(1574), + [anon_sym_const] = ACTIONS(1574), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_default] = ACTIONS(1574), + [anon_sym_enum] = ACTIONS(1574), + [anon_sym_fn] = ACTIONS(1574), + [anon_sym_for] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(1574), + [anon_sym_impl] = ACTIONS(1574), + [anon_sym_let] = ACTIONS(1574), + [anon_sym_loop] = ACTIONS(1574), + [anon_sym_match] = ACTIONS(1574), + [anon_sym_mod] = ACTIONS(1574), + [anon_sym_pub] = ACTIONS(1574), + [anon_sym_return] = ACTIONS(1574), + [anon_sym_static] = ACTIONS(1574), + [anon_sym_struct] = ACTIONS(1574), + [anon_sym_trait] = ACTIONS(1574), + [anon_sym_type] = ACTIONS(1574), + [anon_sym_union] = ACTIONS(1574), + [anon_sym_unsafe] = ACTIONS(1574), + [anon_sym_use] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1574), + [anon_sym_POUND] = ACTIONS(1572), + [anon_sym_BANG] = ACTIONS(1572), + [anon_sym_extern] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_move] = ACTIONS(1574), + [sym_integer_literal] = ACTIONS(1572), + [aux_sym_string_literal_token1] = ACTIONS(1572), + [sym_char_literal] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1574), + [anon_sym_false] = ACTIONS(1574), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1557), - [sym_super] = ACTIONS(1557), - [sym_crate] = ACTIONS(1557), - [sym_metavariable] = ACTIONS(1555), - [sym_raw_string_literal] = ACTIONS(1555), - [sym_float_literal] = ACTIONS(1555), + [sym_self] = ACTIONS(1574), + [sym_super] = ACTIONS(1574), + [sym_crate] = ACTIONS(1574), + [sym_metavariable] = ACTIONS(1572), + [sym_raw_string_literal] = ACTIONS(1572), + [sym_float_literal] = ACTIONS(1572), [sym_block_comment] = ACTIONS(3), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(1559), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1576), + [sym_identifier] = ACTIONS(1578), + [anon_sym_SEMI] = ACTIONS(1576), + [anon_sym_macro_rules_BANG] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1576), + [anon_sym_RBRACE] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(1576), + [anon_sym_u8] = ACTIONS(1578), + [anon_sym_i8] = ACTIONS(1578), + [anon_sym_u16] = ACTIONS(1578), + [anon_sym_i16] = ACTIONS(1578), + [anon_sym_u32] = ACTIONS(1578), + [anon_sym_i32] = ACTIONS(1578), + [anon_sym_u64] = ACTIONS(1578), + [anon_sym_i64] = ACTIONS(1578), + [anon_sym_u128] = ACTIONS(1578), + [anon_sym_i128] = ACTIONS(1578), + [anon_sym_isize] = ACTIONS(1578), + [anon_sym_usize] = ACTIONS(1578), + [anon_sym_f32] = ACTIONS(1578), + [anon_sym_f64] = ACTIONS(1578), + [anon_sym_bool] = ACTIONS(1578), + [anon_sym_str] = ACTIONS(1578), + [anon_sym_char] = ACTIONS(1578), + [anon_sym_SQUOTE] = ACTIONS(1578), + [anon_sym_async] = ACTIONS(1578), + [anon_sym_break] = ACTIONS(1578), + [anon_sym_const] = ACTIONS(1578), + [anon_sym_continue] = ACTIONS(1578), + [anon_sym_default] = ACTIONS(1578), + [anon_sym_enum] = ACTIONS(1578), + [anon_sym_fn] = ACTIONS(1578), + [anon_sym_for] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_impl] = ACTIONS(1578), + [anon_sym_let] = ACTIONS(1578), + [anon_sym_loop] = ACTIONS(1578), + [anon_sym_match] = ACTIONS(1578), + [anon_sym_mod] = ACTIONS(1578), + [anon_sym_pub] = ACTIONS(1578), + [anon_sym_return] = ACTIONS(1578), + [anon_sym_static] = ACTIONS(1578), + [anon_sym_struct] = ACTIONS(1578), + [anon_sym_trait] = ACTIONS(1578), + [anon_sym_type] = ACTIONS(1578), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1578), + [anon_sym_use] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1578), + [anon_sym_POUND] = ACTIONS(1576), + [anon_sym_BANG] = ACTIONS(1576), + [anon_sym_extern] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1576), + [anon_sym_COLON_COLON] = ACTIONS(1576), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1576), + [anon_sym_move] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1576), + [aux_sym_string_literal_token1] = ACTIONS(1576), + [sym_char_literal] = ACTIONS(1576), + [anon_sym_true] = ACTIONS(1578), + [anon_sym_false] = ACTIONS(1578), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1561), - [sym_super] = ACTIONS(1561), - [sym_crate] = ACTIONS(1561), - [sym_metavariable] = ACTIONS(1559), - [sym_raw_string_literal] = ACTIONS(1559), - [sym_float_literal] = ACTIONS(1559), + [sym_self] = ACTIONS(1578), + [sym_super] = ACTIONS(1578), + [sym_crate] = ACTIONS(1578), + [sym_metavariable] = ACTIONS(1576), + [sym_raw_string_literal] = ACTIONS(1576), + [sym_float_literal] = ACTIONS(1576), [sym_block_comment] = ACTIONS(3), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(1563), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1580), + [sym_identifier] = ACTIONS(1582), + [anon_sym_SEMI] = ACTIONS(1580), + [anon_sym_macro_rules_BANG] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1580), + [anon_sym_RBRACE] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_u8] = ACTIONS(1582), + [anon_sym_i8] = ACTIONS(1582), + [anon_sym_u16] = ACTIONS(1582), + [anon_sym_i16] = ACTIONS(1582), + [anon_sym_u32] = ACTIONS(1582), + [anon_sym_i32] = ACTIONS(1582), + [anon_sym_u64] = ACTIONS(1582), + [anon_sym_i64] = ACTIONS(1582), + [anon_sym_u128] = ACTIONS(1582), + [anon_sym_i128] = ACTIONS(1582), + [anon_sym_isize] = ACTIONS(1582), + [anon_sym_usize] = ACTIONS(1582), + [anon_sym_f32] = ACTIONS(1582), + [anon_sym_f64] = ACTIONS(1582), + [anon_sym_bool] = ACTIONS(1582), + [anon_sym_str] = ACTIONS(1582), + [anon_sym_char] = ACTIONS(1582), + [anon_sym_SQUOTE] = ACTIONS(1582), + [anon_sym_async] = ACTIONS(1582), + [anon_sym_break] = ACTIONS(1582), + [anon_sym_const] = ACTIONS(1582), + [anon_sym_continue] = ACTIONS(1582), + [anon_sym_default] = ACTIONS(1582), + [anon_sym_enum] = ACTIONS(1582), + [anon_sym_fn] = ACTIONS(1582), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(1582), + [anon_sym_impl] = ACTIONS(1582), + [anon_sym_let] = ACTIONS(1582), + [anon_sym_loop] = ACTIONS(1582), + [anon_sym_match] = ACTIONS(1582), + [anon_sym_mod] = ACTIONS(1582), + [anon_sym_pub] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1582), + [anon_sym_struct] = ACTIONS(1582), + [anon_sym_trait] = ACTIONS(1582), + [anon_sym_type] = ACTIONS(1582), + [anon_sym_union] = ACTIONS(1582), + [anon_sym_unsafe] = ACTIONS(1582), + [anon_sym_use] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1582), + [anon_sym_POUND] = ACTIONS(1580), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_extern] = ACTIONS(1582), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1580), + [anon_sym_AMP] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PIPE] = ACTIONS(1580), + [anon_sym_move] = ACTIONS(1582), + [sym_integer_literal] = ACTIONS(1580), + [aux_sym_string_literal_token1] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(1580), + [anon_sym_true] = ACTIONS(1582), + [anon_sym_false] = ACTIONS(1582), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1565), - [sym_super] = ACTIONS(1565), - [sym_crate] = ACTIONS(1565), - [sym_metavariable] = ACTIONS(1563), - [sym_raw_string_literal] = ACTIONS(1563), - [sym_float_literal] = ACTIONS(1563), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(1582), + [sym_metavariable] = ACTIONS(1580), + [sym_raw_string_literal] = ACTIONS(1580), + [sym_float_literal] = ACTIONS(1580), [sym_block_comment] = ACTIONS(3), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(1567), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1584), + [sym_identifier] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1584), + [anon_sym_macro_rules_BANG] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_STAR] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1586), + [anon_sym_i8] = ACTIONS(1586), + [anon_sym_u16] = ACTIONS(1586), + [anon_sym_i16] = ACTIONS(1586), + [anon_sym_u32] = ACTIONS(1586), + [anon_sym_i32] = ACTIONS(1586), + [anon_sym_u64] = ACTIONS(1586), + [anon_sym_i64] = ACTIONS(1586), + [anon_sym_u128] = ACTIONS(1586), + [anon_sym_i128] = ACTIONS(1586), + [anon_sym_isize] = ACTIONS(1586), + [anon_sym_usize] = ACTIONS(1586), + [anon_sym_f32] = ACTIONS(1586), + [anon_sym_f64] = ACTIONS(1586), + [anon_sym_bool] = ACTIONS(1586), + [anon_sym_str] = ACTIONS(1586), + [anon_sym_char] = ACTIONS(1586), + [anon_sym_SQUOTE] = ACTIONS(1586), + [anon_sym_async] = ACTIONS(1586), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_const] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_default] = ACTIONS(1586), + [anon_sym_enum] = ACTIONS(1586), + [anon_sym_fn] = ACTIONS(1586), + [anon_sym_for] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(1586), + [anon_sym_impl] = ACTIONS(1586), + [anon_sym_let] = ACTIONS(1586), + [anon_sym_loop] = ACTIONS(1586), + [anon_sym_match] = ACTIONS(1586), + [anon_sym_mod] = ACTIONS(1586), + [anon_sym_pub] = ACTIONS(1586), + [anon_sym_return] = ACTIONS(1586), + [anon_sym_static] = ACTIONS(1586), + [anon_sym_struct] = ACTIONS(1586), + [anon_sym_trait] = ACTIONS(1586), + [anon_sym_type] = ACTIONS(1586), + [anon_sym_union] = ACTIONS(1586), + [anon_sym_unsafe] = ACTIONS(1586), + [anon_sym_use] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1586), + [anon_sym_POUND] = ACTIONS(1584), + [anon_sym_BANG] = ACTIONS(1584), + [anon_sym_extern] = ACTIONS(1586), + [anon_sym_LT] = ACTIONS(1584), + [anon_sym_COLON_COLON] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1584), + [anon_sym_DOT_DOT] = ACTIONS(1584), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PIPE] = ACTIONS(1584), + [anon_sym_move] = ACTIONS(1586), + [sym_integer_literal] = ACTIONS(1584), + [aux_sym_string_literal_token1] = ACTIONS(1584), + [sym_char_literal] = ACTIONS(1584), + [anon_sym_true] = ACTIONS(1586), + [anon_sym_false] = ACTIONS(1586), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1569), - [sym_crate] = ACTIONS(1569), - [sym_metavariable] = ACTIONS(1567), - [sym_raw_string_literal] = ACTIONS(1567), - [sym_float_literal] = ACTIONS(1567), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1586), + [sym_crate] = ACTIONS(1586), + [sym_metavariable] = ACTIONS(1584), + [sym_raw_string_literal] = ACTIONS(1584), + [sym_float_literal] = ACTIONS(1584), [sym_block_comment] = ACTIONS(3), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(1571), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1588), + [sym_identifier] = ACTIONS(1590), + [anon_sym_SEMI] = ACTIONS(1588), + [anon_sym_macro_rules_BANG] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1588), + [anon_sym_RBRACE] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1588), + [anon_sym_STAR] = ACTIONS(1588), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u128] = ACTIONS(1590), + [anon_sym_i128] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_str] = ACTIONS(1590), + [anon_sym_char] = ACTIONS(1590), + [anon_sym_SQUOTE] = ACTIONS(1590), + [anon_sym_async] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_const] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_default] = ACTIONS(1590), + [anon_sym_enum] = ACTIONS(1590), + [anon_sym_fn] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_impl] = ACTIONS(1590), + [anon_sym_let] = ACTIONS(1590), + [anon_sym_loop] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_mod] = ACTIONS(1590), + [anon_sym_pub] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_static] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_trait] = ACTIONS(1590), + [anon_sym_type] = ACTIONS(1590), + [anon_sym_union] = ACTIONS(1590), + [anon_sym_unsafe] = ACTIONS(1590), + [anon_sym_use] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_POUND] = ACTIONS(1588), + [anon_sym_BANG] = ACTIONS(1588), + [anon_sym_extern] = ACTIONS(1590), + [anon_sym_LT] = ACTIONS(1588), + [anon_sym_COLON_COLON] = ACTIONS(1588), + [anon_sym_AMP] = ACTIONS(1588), + [anon_sym_DOT_DOT] = ACTIONS(1588), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PIPE] = ACTIONS(1588), + [anon_sym_move] = ACTIONS(1590), + [sym_integer_literal] = ACTIONS(1588), + [aux_sym_string_literal_token1] = ACTIONS(1588), + [sym_char_literal] = ACTIONS(1588), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1573), - [sym_crate] = ACTIONS(1573), - [sym_metavariable] = ACTIONS(1571), - [sym_raw_string_literal] = ACTIONS(1571), - [sym_float_literal] = ACTIONS(1571), + [sym_self] = ACTIONS(1590), + [sym_super] = ACTIONS(1590), + [sym_crate] = ACTIONS(1590), + [sym_metavariable] = ACTIONS(1588), + [sym_raw_string_literal] = ACTIONS(1588), + [sym_float_literal] = ACTIONS(1588), [sym_block_comment] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1575), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1592), + [sym_identifier] = ACTIONS(1594), + [anon_sym_SEMI] = ACTIONS(1592), + [anon_sym_macro_rules_BANG] = ACTIONS(1592), + [anon_sym_LPAREN] = ACTIONS(1592), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_LBRACK] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(1592), + [anon_sym_u8] = ACTIONS(1594), + [anon_sym_i8] = ACTIONS(1594), + [anon_sym_u16] = ACTIONS(1594), + [anon_sym_i16] = ACTIONS(1594), + [anon_sym_u32] = ACTIONS(1594), + [anon_sym_i32] = ACTIONS(1594), + [anon_sym_u64] = ACTIONS(1594), + [anon_sym_i64] = ACTIONS(1594), + [anon_sym_u128] = ACTIONS(1594), + [anon_sym_i128] = ACTIONS(1594), + [anon_sym_isize] = ACTIONS(1594), + [anon_sym_usize] = ACTIONS(1594), + [anon_sym_f32] = ACTIONS(1594), + [anon_sym_f64] = ACTIONS(1594), + [anon_sym_bool] = ACTIONS(1594), + [anon_sym_str] = ACTIONS(1594), + [anon_sym_char] = ACTIONS(1594), + [anon_sym_SQUOTE] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1594), + [anon_sym_const] = ACTIONS(1594), + [anon_sym_continue] = ACTIONS(1594), + [anon_sym_default] = ACTIONS(1594), + [anon_sym_enum] = ACTIONS(1594), + [anon_sym_fn] = ACTIONS(1594), + [anon_sym_for] = ACTIONS(1594), + [anon_sym_if] = ACTIONS(1594), + [anon_sym_impl] = ACTIONS(1594), + [anon_sym_let] = ACTIONS(1594), + [anon_sym_loop] = ACTIONS(1594), + [anon_sym_match] = ACTIONS(1594), + [anon_sym_mod] = ACTIONS(1594), + [anon_sym_pub] = ACTIONS(1594), + [anon_sym_return] = ACTIONS(1594), + [anon_sym_static] = ACTIONS(1594), + [anon_sym_struct] = ACTIONS(1594), + [anon_sym_trait] = ACTIONS(1594), + [anon_sym_type] = ACTIONS(1594), + [anon_sym_union] = ACTIONS(1594), + [anon_sym_unsafe] = ACTIONS(1594), + [anon_sym_use] = ACTIONS(1594), + [anon_sym_while] = ACTIONS(1594), + [anon_sym_POUND] = ACTIONS(1592), + [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_extern] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1592), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_DOT_DOT] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1592), + [anon_sym_move] = ACTIONS(1594), + [sym_integer_literal] = ACTIONS(1592), + [aux_sym_string_literal_token1] = ACTIONS(1592), + [sym_char_literal] = ACTIONS(1592), + [anon_sym_true] = ACTIONS(1594), + [anon_sym_false] = ACTIONS(1594), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1577), - [sym_super] = ACTIONS(1577), - [sym_crate] = ACTIONS(1577), - [sym_metavariable] = ACTIONS(1575), - [sym_raw_string_literal] = ACTIONS(1575), - [sym_float_literal] = ACTIONS(1575), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1594), + [sym_crate] = ACTIONS(1594), + [sym_metavariable] = ACTIONS(1592), + [sym_raw_string_literal] = ACTIONS(1592), + [sym_float_literal] = ACTIONS(1592), [sym_block_comment] = ACTIONS(3), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(1579), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1596), + [sym_identifier] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1596), + [anon_sym_macro_rules_BANG] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u128] = ACTIONS(1598), + [anon_sym_i128] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_str] = ACTIONS(1598), + [anon_sym_char] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1598), + [anon_sym_async] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_const] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_default] = ACTIONS(1598), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_fn] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_impl] = ACTIONS(1598), + [anon_sym_let] = ACTIONS(1598), + [anon_sym_loop] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_mod] = ACTIONS(1598), + [anon_sym_pub] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_static] = ACTIONS(1598), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_trait] = ACTIONS(1598), + [anon_sym_type] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_unsafe] = ACTIONS(1598), + [anon_sym_use] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_COLON_COLON] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1598), + [sym_integer_literal] = ACTIONS(1596), + [aux_sym_string_literal_token1] = ACTIONS(1596), + [sym_char_literal] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1581), - [sym_super] = ACTIONS(1581), - [sym_crate] = ACTIONS(1581), - [sym_metavariable] = ACTIONS(1579), - [sym_raw_string_literal] = ACTIONS(1579), - [sym_float_literal] = ACTIONS(1579), + [sym_self] = ACTIONS(1598), + [sym_super] = ACTIONS(1598), + [sym_crate] = ACTIONS(1598), + [sym_metavariable] = ACTIONS(1596), + [sym_raw_string_literal] = ACTIONS(1596), + [sym_float_literal] = ACTIONS(1596), [sym_block_comment] = ACTIONS(3), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(1583), - [sym_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_u8] = ACTIONS(1585), - [anon_sym_i8] = ACTIONS(1585), - [anon_sym_u16] = ACTIONS(1585), - [anon_sym_i16] = ACTIONS(1585), - [anon_sym_u32] = ACTIONS(1585), - [anon_sym_i32] = ACTIONS(1585), - [anon_sym_u64] = ACTIONS(1585), - [anon_sym_i64] = ACTIONS(1585), - [anon_sym_u128] = ACTIONS(1585), - [anon_sym_i128] = ACTIONS(1585), - [anon_sym_isize] = ACTIONS(1585), - [anon_sym_usize] = ACTIONS(1585), - [anon_sym_f32] = ACTIONS(1585), - [anon_sym_f64] = ACTIONS(1585), - [anon_sym_bool] = ACTIONS(1585), - [anon_sym_str] = ACTIONS(1585), - [anon_sym_char] = ACTIONS(1585), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1600), + [sym_identifier] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_macro_rules_BANG] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_u8] = ACTIONS(1602), + [anon_sym_i8] = ACTIONS(1602), + [anon_sym_u16] = ACTIONS(1602), + [anon_sym_i16] = ACTIONS(1602), + [anon_sym_u32] = ACTIONS(1602), + [anon_sym_i32] = ACTIONS(1602), + [anon_sym_u64] = ACTIONS(1602), + [anon_sym_i64] = ACTIONS(1602), + [anon_sym_u128] = ACTIONS(1602), + [anon_sym_i128] = ACTIONS(1602), + [anon_sym_isize] = ACTIONS(1602), + [anon_sym_usize] = ACTIONS(1602), + [anon_sym_f32] = ACTIONS(1602), + [anon_sym_f64] = ACTIONS(1602), + [anon_sym_bool] = ACTIONS(1602), + [anon_sym_str] = ACTIONS(1602), + [anon_sym_char] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1602), + [anon_sym_async] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1602), + [anon_sym_enum] = ACTIONS(1602), + [anon_sym_fn] = ACTIONS(1602), + [anon_sym_for] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1602), + [anon_sym_impl] = ACTIONS(1602), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_loop] = ACTIONS(1602), + [anon_sym_match] = ACTIONS(1602), + [anon_sym_mod] = ACTIONS(1602), + [anon_sym_pub] = ACTIONS(1602), + [anon_sym_return] = ACTIONS(1602), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_struct] = ACTIONS(1602), + [anon_sym_trait] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_union] = ACTIONS(1602), + [anon_sym_unsafe] = ACTIONS(1602), + [anon_sym_use] = ACTIONS(1602), + [anon_sym_while] = ACTIONS(1602), + [anon_sym_POUND] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_extern] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1600), + [anon_sym_COLON_COLON] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1602), + [sym_integer_literal] = ACTIONS(1600), + [aux_sym_string_literal_token1] = ACTIONS(1600), + [sym_char_literal] = ACTIONS(1600), + [anon_sym_true] = ACTIONS(1602), + [anon_sym_false] = ACTIONS(1602), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1585), - [sym_super] = ACTIONS(1585), - [sym_crate] = ACTIONS(1585), - [sym_metavariable] = ACTIONS(1583), - [sym_raw_string_literal] = ACTIONS(1583), - [sym_float_literal] = ACTIONS(1583), + [sym_self] = ACTIONS(1602), + [sym_super] = ACTIONS(1602), + [sym_crate] = ACTIONS(1602), + [sym_metavariable] = ACTIONS(1600), + [sym_raw_string_literal] = ACTIONS(1600), + [sym_float_literal] = ACTIONS(1600), [sym_block_comment] = ACTIONS(3), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(1587), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1604), + [sym_identifier] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_macro_rules_BANG] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_RBRACE] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1604), + [anon_sym_u8] = ACTIONS(1606), + [anon_sym_i8] = ACTIONS(1606), + [anon_sym_u16] = ACTIONS(1606), + [anon_sym_i16] = ACTIONS(1606), + [anon_sym_u32] = ACTIONS(1606), + [anon_sym_i32] = ACTIONS(1606), + [anon_sym_u64] = ACTIONS(1606), + [anon_sym_i64] = ACTIONS(1606), + [anon_sym_u128] = ACTIONS(1606), + [anon_sym_i128] = ACTIONS(1606), + [anon_sym_isize] = ACTIONS(1606), + [anon_sym_usize] = ACTIONS(1606), + [anon_sym_f32] = ACTIONS(1606), + [anon_sym_f64] = ACTIONS(1606), + [anon_sym_bool] = ACTIONS(1606), + [anon_sym_str] = ACTIONS(1606), + [anon_sym_char] = ACTIONS(1606), + [anon_sym_SQUOTE] = ACTIONS(1606), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_continue] = ACTIONS(1606), + [anon_sym_default] = ACTIONS(1606), + [anon_sym_enum] = ACTIONS(1606), + [anon_sym_fn] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_impl] = ACTIONS(1606), + [anon_sym_let] = ACTIONS(1606), + [anon_sym_loop] = ACTIONS(1606), + [anon_sym_match] = ACTIONS(1606), + [anon_sym_mod] = ACTIONS(1606), + [anon_sym_pub] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_static] = ACTIONS(1606), + [anon_sym_struct] = ACTIONS(1606), + [anon_sym_trait] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_union] = ACTIONS(1606), + [anon_sym_unsafe] = ACTIONS(1606), + [anon_sym_use] = ACTIONS(1606), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_POUND] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1604), + [anon_sym_extern] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1604), + [anon_sym_COLON_COLON] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), + [anon_sym_DOT_DOT] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_move] = ACTIONS(1606), + [sym_integer_literal] = ACTIONS(1604), + [aux_sym_string_literal_token1] = ACTIONS(1604), + [sym_char_literal] = ACTIONS(1604), + [anon_sym_true] = ACTIONS(1606), + [anon_sym_false] = ACTIONS(1606), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1589), - [sym_super] = ACTIONS(1589), - [sym_crate] = ACTIONS(1589), - [sym_metavariable] = ACTIONS(1587), - [sym_raw_string_literal] = ACTIONS(1587), - [sym_float_literal] = ACTIONS(1587), + [sym_self] = ACTIONS(1606), + [sym_super] = ACTIONS(1606), + [sym_crate] = ACTIONS(1606), + [sym_metavariable] = ACTIONS(1604), + [sym_raw_string_literal] = ACTIONS(1604), + [sym_float_literal] = ACTIONS(1604), [sym_block_comment] = ACTIONS(3), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(1591), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1608), + [sym_identifier] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_macro_rules_BANG] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_STAR] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1610), + [anon_sym_i8] = ACTIONS(1610), + [anon_sym_u16] = ACTIONS(1610), + [anon_sym_i16] = ACTIONS(1610), + [anon_sym_u32] = ACTIONS(1610), + [anon_sym_i32] = ACTIONS(1610), + [anon_sym_u64] = ACTIONS(1610), + [anon_sym_i64] = ACTIONS(1610), + [anon_sym_u128] = ACTIONS(1610), + [anon_sym_i128] = ACTIONS(1610), + [anon_sym_isize] = ACTIONS(1610), + [anon_sym_usize] = ACTIONS(1610), + [anon_sym_f32] = ACTIONS(1610), + [anon_sym_f64] = ACTIONS(1610), + [anon_sym_bool] = ACTIONS(1610), + [anon_sym_str] = ACTIONS(1610), + [anon_sym_char] = ACTIONS(1610), + [anon_sym_SQUOTE] = ACTIONS(1610), + [anon_sym_async] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_continue] = ACTIONS(1610), + [anon_sym_default] = ACTIONS(1610), + [anon_sym_enum] = ACTIONS(1610), + [anon_sym_fn] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_impl] = ACTIONS(1610), + [anon_sym_let] = ACTIONS(1610), + [anon_sym_loop] = ACTIONS(1610), + [anon_sym_match] = ACTIONS(1610), + [anon_sym_mod] = ACTIONS(1610), + [anon_sym_pub] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1610), + [anon_sym_struct] = ACTIONS(1610), + [anon_sym_trait] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_union] = ACTIONS(1610), + [anon_sym_unsafe] = ACTIONS(1610), + [anon_sym_use] = ACTIONS(1610), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_POUND] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1610), + [anon_sym_LT] = ACTIONS(1608), + [anon_sym_COLON_COLON] = ACTIONS(1608), + [anon_sym_AMP] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_move] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1608), + [aux_sym_string_literal_token1] = ACTIONS(1608), + [sym_char_literal] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1593), - [sym_super] = ACTIONS(1593), - [sym_crate] = ACTIONS(1593), - [sym_metavariable] = ACTIONS(1591), - [sym_raw_string_literal] = ACTIONS(1591), - [sym_float_literal] = ACTIONS(1591), + [sym_self] = ACTIONS(1610), + [sym_super] = ACTIONS(1610), + [sym_crate] = ACTIONS(1610), + [sym_metavariable] = ACTIONS(1608), + [sym_raw_string_literal] = ACTIONS(1608), + [sym_float_literal] = ACTIONS(1608), [sym_block_comment] = ACTIONS(3), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(1595), - [sym_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_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), - [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_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), + [ts_builtin_sym_end] = ACTIONS(1612), + [sym_identifier] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1612), + [anon_sym_macro_rules_BANG] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_u8] = ACTIONS(1614), + [anon_sym_i8] = ACTIONS(1614), + [anon_sym_u16] = ACTIONS(1614), + [anon_sym_i16] = ACTIONS(1614), + [anon_sym_u32] = ACTIONS(1614), + [anon_sym_i32] = ACTIONS(1614), + [anon_sym_u64] = ACTIONS(1614), + [anon_sym_i64] = ACTIONS(1614), + [anon_sym_u128] = ACTIONS(1614), + [anon_sym_i128] = ACTIONS(1614), + [anon_sym_isize] = ACTIONS(1614), + [anon_sym_usize] = ACTIONS(1614), + [anon_sym_f32] = ACTIONS(1614), + [anon_sym_f64] = ACTIONS(1614), + [anon_sym_bool] = ACTIONS(1614), + [anon_sym_str] = ACTIONS(1614), + [anon_sym_char] = ACTIONS(1614), + [anon_sym_SQUOTE] = ACTIONS(1614), + [anon_sym_async] = ACTIONS(1614), + [anon_sym_break] = ACTIONS(1614), + [anon_sym_const] = ACTIONS(1614), + [anon_sym_continue] = ACTIONS(1614), + [anon_sym_default] = ACTIONS(1614), + [anon_sym_enum] = ACTIONS(1614), + [anon_sym_fn] = ACTIONS(1614), + [anon_sym_for] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1614), + [anon_sym_impl] = ACTIONS(1614), + [anon_sym_let] = ACTIONS(1614), + [anon_sym_loop] = ACTIONS(1614), + [anon_sym_match] = ACTIONS(1614), + [anon_sym_mod] = ACTIONS(1614), + [anon_sym_pub] = ACTIONS(1614), + [anon_sym_return] = ACTIONS(1614), + [anon_sym_static] = ACTIONS(1614), + [anon_sym_struct] = ACTIONS(1614), + [anon_sym_trait] = ACTIONS(1614), + [anon_sym_type] = ACTIONS(1614), + [anon_sym_union] = ACTIONS(1614), + [anon_sym_unsafe] = ACTIONS(1614), + [anon_sym_use] = ACTIONS(1614), + [anon_sym_while] = ACTIONS(1614), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_BANG] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1614), + [anon_sym_LT] = ACTIONS(1612), + [anon_sym_COLON_COLON] = ACTIONS(1612), + [anon_sym_AMP] = ACTIONS(1612), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_PIPE] = ACTIONS(1612), + [anon_sym_move] = ACTIONS(1614), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1612), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_crate] = ACTIONS(1597), - [sym_metavariable] = ACTIONS(1595), - [sym_raw_string_literal] = ACTIONS(1595), - [sym_float_literal] = ACTIONS(1595), + [sym_self] = ACTIONS(1614), + [sym_super] = ACTIONS(1614), + [sym_crate] = ACTIONS(1614), + [sym_metavariable] = ACTIONS(1612), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), [sym_block_comment] = ACTIONS(3), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(1599), - [sym_identifier] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_macro_rules_BANG] = ACTIONS(1599), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1599), - [anon_sym_u8] = ACTIONS(1601), - [anon_sym_i8] = ACTIONS(1601), - [anon_sym_u16] = ACTIONS(1601), - [anon_sym_i16] = ACTIONS(1601), - [anon_sym_u32] = ACTIONS(1601), - [anon_sym_i32] = ACTIONS(1601), - [anon_sym_u64] = ACTIONS(1601), - [anon_sym_i64] = ACTIONS(1601), - [anon_sym_u128] = ACTIONS(1601), - [anon_sym_i128] = ACTIONS(1601), - [anon_sym_isize] = ACTIONS(1601), - [anon_sym_usize] = ACTIONS(1601), - [anon_sym_f32] = ACTIONS(1601), - [anon_sym_f64] = ACTIONS(1601), - [anon_sym_bool] = ACTIONS(1601), - [anon_sym_str] = ACTIONS(1601), - [anon_sym_char] = ACTIONS(1601), - [anon_sym_SQUOTE] = ACTIONS(1601), - [anon_sym_async] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1601), - [anon_sym_const] = ACTIONS(1601), - [anon_sym_continue] = ACTIONS(1601), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_enum] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1601), - [anon_sym_for] = ACTIONS(1601), - [anon_sym_if] = ACTIONS(1601), - [anon_sym_impl] = ACTIONS(1601), - [anon_sym_let] = ACTIONS(1601), - [anon_sym_loop] = ACTIONS(1601), - [anon_sym_match] = ACTIONS(1601), - [anon_sym_mod] = ACTIONS(1601), - [anon_sym_pub] = ACTIONS(1601), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_static] = ACTIONS(1601), - [anon_sym_struct] = ACTIONS(1601), - [anon_sym_trait] = ACTIONS(1601), - [anon_sym_type] = ACTIONS(1601), - [anon_sym_union] = ACTIONS(1601), - [anon_sym_unsafe] = ACTIONS(1601), - [anon_sym_use] = ACTIONS(1601), - [anon_sym_while] = ACTIONS(1601), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1616), + [sym_identifier] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1616), + [anon_sym_macro_rules_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1616), + [anon_sym_LBRACE] = ACTIONS(1616), + [anon_sym_RBRACE] = ACTIONS(1616), + [anon_sym_LBRACK] = ACTIONS(1616), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_u8] = ACTIONS(1618), + [anon_sym_i8] = ACTIONS(1618), + [anon_sym_u16] = ACTIONS(1618), + [anon_sym_i16] = ACTIONS(1618), + [anon_sym_u32] = ACTIONS(1618), + [anon_sym_i32] = ACTIONS(1618), + [anon_sym_u64] = ACTIONS(1618), + [anon_sym_i64] = ACTIONS(1618), + [anon_sym_u128] = ACTIONS(1618), + [anon_sym_i128] = ACTIONS(1618), + [anon_sym_isize] = ACTIONS(1618), + [anon_sym_usize] = ACTIONS(1618), + [anon_sym_f32] = ACTIONS(1618), + [anon_sym_f64] = ACTIONS(1618), + [anon_sym_bool] = ACTIONS(1618), + [anon_sym_str] = ACTIONS(1618), + [anon_sym_char] = ACTIONS(1618), + [anon_sym_SQUOTE] = ACTIONS(1618), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1618), + [anon_sym_const] = ACTIONS(1618), + [anon_sym_continue] = ACTIONS(1618), + [anon_sym_default] = ACTIONS(1618), + [anon_sym_enum] = ACTIONS(1618), + [anon_sym_fn] = ACTIONS(1618), + [anon_sym_for] = ACTIONS(1618), + [anon_sym_if] = ACTIONS(1618), + [anon_sym_impl] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1618), + [anon_sym_loop] = ACTIONS(1618), + [anon_sym_match] = ACTIONS(1618), + [anon_sym_mod] = ACTIONS(1618), + [anon_sym_pub] = ACTIONS(1618), + [anon_sym_return] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1618), + [anon_sym_struct] = ACTIONS(1618), + [anon_sym_trait] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1618), + [anon_sym_union] = ACTIONS(1618), + [anon_sym_unsafe] = ACTIONS(1618), + [anon_sym_use] = ACTIONS(1618), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_POUND] = ACTIONS(1616), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_extern] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1616), + [anon_sym_COLON_COLON] = ACTIONS(1616), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_DOT_DOT] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1616), + [anon_sym_move] = ACTIONS(1618), + [sym_integer_literal] = ACTIONS(1616), + [aux_sym_string_literal_token1] = ACTIONS(1616), + [sym_char_literal] = ACTIONS(1616), + [anon_sym_true] = ACTIONS(1618), + [anon_sym_false] = ACTIONS(1618), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1601), - [sym_super] = ACTIONS(1601), - [sym_crate] = ACTIONS(1601), - [sym_metavariable] = ACTIONS(1599), - [sym_raw_string_literal] = ACTIONS(1599), - [sym_float_literal] = ACTIONS(1599), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1616), + [sym_raw_string_literal] = ACTIONS(1616), + [sym_float_literal] = ACTIONS(1616), [sym_block_comment] = ACTIONS(3), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(1603), - [sym_identifier] = ACTIONS(1605), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_macro_rules_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1603), - [anon_sym_LBRACE] = ACTIONS(1603), - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_LBRACK] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_u8] = ACTIONS(1605), - [anon_sym_i8] = ACTIONS(1605), - [anon_sym_u16] = ACTIONS(1605), - [anon_sym_i16] = ACTIONS(1605), - [anon_sym_u32] = ACTIONS(1605), - [anon_sym_i32] = ACTIONS(1605), - [anon_sym_u64] = ACTIONS(1605), - [anon_sym_i64] = ACTIONS(1605), - [anon_sym_u128] = ACTIONS(1605), - [anon_sym_i128] = ACTIONS(1605), - [anon_sym_isize] = ACTIONS(1605), - [anon_sym_usize] = ACTIONS(1605), - [anon_sym_f32] = ACTIONS(1605), - [anon_sym_f64] = ACTIONS(1605), - [anon_sym_bool] = ACTIONS(1605), - [anon_sym_str] = ACTIONS(1605), - [anon_sym_char] = ACTIONS(1605), - [anon_sym_SQUOTE] = ACTIONS(1605), - [anon_sym_async] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1605), - [anon_sym_const] = ACTIONS(1605), - [anon_sym_continue] = ACTIONS(1605), - [anon_sym_default] = ACTIONS(1605), - [anon_sym_enum] = ACTIONS(1605), - [anon_sym_fn] = ACTIONS(1605), - [anon_sym_for] = ACTIONS(1605), - [anon_sym_if] = ACTIONS(1605), - [anon_sym_impl] = ACTIONS(1605), - [anon_sym_let] = ACTIONS(1605), - [anon_sym_loop] = ACTIONS(1605), - [anon_sym_match] = ACTIONS(1605), - [anon_sym_mod] = ACTIONS(1605), - [anon_sym_pub] = ACTIONS(1605), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_static] = ACTIONS(1605), - [anon_sym_struct] = ACTIONS(1605), - [anon_sym_trait] = ACTIONS(1605), - [anon_sym_type] = ACTIONS(1605), - [anon_sym_union] = ACTIONS(1605), - [anon_sym_unsafe] = ACTIONS(1605), - [anon_sym_use] = ACTIONS(1605), - [anon_sym_while] = ACTIONS(1605), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1620), + [sym_identifier] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1620), + [anon_sym_macro_rules_BANG] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1620), + [anon_sym_STAR] = ACTIONS(1620), + [anon_sym_u8] = ACTIONS(1622), + [anon_sym_i8] = ACTIONS(1622), + [anon_sym_u16] = ACTIONS(1622), + [anon_sym_i16] = ACTIONS(1622), + [anon_sym_u32] = ACTIONS(1622), + [anon_sym_i32] = ACTIONS(1622), + [anon_sym_u64] = ACTIONS(1622), + [anon_sym_i64] = ACTIONS(1622), + [anon_sym_u128] = ACTIONS(1622), + [anon_sym_i128] = ACTIONS(1622), + [anon_sym_isize] = ACTIONS(1622), + [anon_sym_usize] = ACTIONS(1622), + [anon_sym_f32] = ACTIONS(1622), + [anon_sym_f64] = ACTIONS(1622), + [anon_sym_bool] = ACTIONS(1622), + [anon_sym_str] = ACTIONS(1622), + [anon_sym_char] = ACTIONS(1622), + [anon_sym_SQUOTE] = ACTIONS(1622), + [anon_sym_async] = ACTIONS(1622), + [anon_sym_break] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1622), + [anon_sym_continue] = ACTIONS(1622), + [anon_sym_default] = ACTIONS(1622), + [anon_sym_enum] = ACTIONS(1622), + [anon_sym_fn] = ACTIONS(1622), + [anon_sym_for] = ACTIONS(1622), + [anon_sym_if] = ACTIONS(1622), + [anon_sym_impl] = ACTIONS(1622), + [anon_sym_let] = ACTIONS(1622), + [anon_sym_loop] = ACTIONS(1622), + [anon_sym_match] = ACTIONS(1622), + [anon_sym_mod] = ACTIONS(1622), + [anon_sym_pub] = ACTIONS(1622), + [anon_sym_return] = ACTIONS(1622), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_struct] = ACTIONS(1622), + [anon_sym_trait] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1622), + [anon_sym_union] = ACTIONS(1622), + [anon_sym_unsafe] = ACTIONS(1622), + [anon_sym_use] = ACTIONS(1622), + [anon_sym_while] = ACTIONS(1622), + [anon_sym_POUND] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_COLON_COLON] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_move] = ACTIONS(1622), + [sym_integer_literal] = ACTIONS(1620), + [aux_sym_string_literal_token1] = ACTIONS(1620), + [sym_char_literal] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1605), - [sym_super] = ACTIONS(1605), - [sym_crate] = ACTIONS(1605), - [sym_metavariable] = ACTIONS(1603), - [sym_raw_string_literal] = ACTIONS(1603), - [sym_float_literal] = ACTIONS(1603), + [sym_self] = ACTIONS(1622), + [sym_super] = ACTIONS(1622), + [sym_crate] = ACTIONS(1622), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1620), + [sym_float_literal] = ACTIONS(1620), [sym_block_comment] = ACTIONS(3), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(1607), - [sym_identifier] = ACTIONS(1609), - [anon_sym_SEMI] = ACTIONS(1607), - [anon_sym_macro_rules_BANG] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1607), - [anon_sym_LBRACE] = ACTIONS(1607), - [anon_sym_RBRACE] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1607), - [anon_sym_STAR] = ACTIONS(1607), - [anon_sym_u8] = ACTIONS(1609), - [anon_sym_i8] = ACTIONS(1609), - [anon_sym_u16] = ACTIONS(1609), - [anon_sym_i16] = ACTIONS(1609), - [anon_sym_u32] = ACTIONS(1609), - [anon_sym_i32] = ACTIONS(1609), - [anon_sym_u64] = ACTIONS(1609), - [anon_sym_i64] = ACTIONS(1609), - [anon_sym_u128] = ACTIONS(1609), - [anon_sym_i128] = ACTIONS(1609), - [anon_sym_isize] = ACTIONS(1609), - [anon_sym_usize] = ACTIONS(1609), - [anon_sym_f32] = ACTIONS(1609), - [anon_sym_f64] = ACTIONS(1609), - [anon_sym_bool] = ACTIONS(1609), - [anon_sym_str] = ACTIONS(1609), - [anon_sym_char] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(1609), - [anon_sym_async] = ACTIONS(1609), - [anon_sym_break] = ACTIONS(1609), - [anon_sym_const] = ACTIONS(1609), - [anon_sym_continue] = ACTIONS(1609), - [anon_sym_default] = ACTIONS(1609), - [anon_sym_enum] = ACTIONS(1609), - [anon_sym_fn] = ACTIONS(1609), - [anon_sym_for] = ACTIONS(1609), - [anon_sym_if] = ACTIONS(1609), - [anon_sym_impl] = ACTIONS(1609), - [anon_sym_let] = ACTIONS(1609), - [anon_sym_loop] = ACTIONS(1609), - [anon_sym_match] = ACTIONS(1609), - [anon_sym_mod] = ACTIONS(1609), - [anon_sym_pub] = ACTIONS(1609), - [anon_sym_return] = ACTIONS(1609), - [anon_sym_static] = ACTIONS(1609), - [anon_sym_struct] = ACTIONS(1609), - [anon_sym_trait] = ACTIONS(1609), - [anon_sym_type] = ACTIONS(1609), - [anon_sym_union] = ACTIONS(1609), - [anon_sym_unsafe] = ACTIONS(1609), - [anon_sym_use] = ACTIONS(1609), - [anon_sym_while] = ACTIONS(1609), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1624), + [sym_identifier] = ACTIONS(1626), + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_macro_rules_BANG] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1626), + [anon_sym_i8] = ACTIONS(1626), + [anon_sym_u16] = ACTIONS(1626), + [anon_sym_i16] = ACTIONS(1626), + [anon_sym_u32] = ACTIONS(1626), + [anon_sym_i32] = ACTIONS(1626), + [anon_sym_u64] = ACTIONS(1626), + [anon_sym_i64] = ACTIONS(1626), + [anon_sym_u128] = ACTIONS(1626), + [anon_sym_i128] = ACTIONS(1626), + [anon_sym_isize] = ACTIONS(1626), + [anon_sym_usize] = ACTIONS(1626), + [anon_sym_f32] = ACTIONS(1626), + [anon_sym_f64] = ACTIONS(1626), + [anon_sym_bool] = ACTIONS(1626), + [anon_sym_str] = ACTIONS(1626), + [anon_sym_char] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1626), + [anon_sym_async] = ACTIONS(1626), + [anon_sym_break] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1626), + [anon_sym_continue] = ACTIONS(1626), + [anon_sym_default] = ACTIONS(1626), + [anon_sym_enum] = ACTIONS(1626), + [anon_sym_fn] = ACTIONS(1626), + [anon_sym_for] = ACTIONS(1626), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_impl] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1626), + [anon_sym_loop] = ACTIONS(1626), + [anon_sym_match] = ACTIONS(1626), + [anon_sym_mod] = ACTIONS(1626), + [anon_sym_pub] = ACTIONS(1626), + [anon_sym_return] = ACTIONS(1626), + [anon_sym_static] = ACTIONS(1626), + [anon_sym_struct] = ACTIONS(1626), + [anon_sym_trait] = ACTIONS(1626), + [anon_sym_type] = ACTIONS(1626), + [anon_sym_union] = ACTIONS(1626), + [anon_sym_unsafe] = ACTIONS(1626), + [anon_sym_use] = ACTIONS(1626), + [anon_sym_while] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(1624), + [anon_sym_BANG] = ACTIONS(1624), + [anon_sym_extern] = ACTIONS(1626), + [anon_sym_LT] = ACTIONS(1624), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1624), + [anon_sym_DOT_DOT] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1624), + [anon_sym_move] = ACTIONS(1626), + [sym_integer_literal] = ACTIONS(1624), + [aux_sym_string_literal_token1] = ACTIONS(1624), + [sym_char_literal] = ACTIONS(1624), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1609), - [sym_super] = ACTIONS(1609), - [sym_crate] = ACTIONS(1609), - [sym_metavariable] = ACTIONS(1607), - [sym_raw_string_literal] = ACTIONS(1607), - [sym_float_literal] = ACTIONS(1607), + [sym_self] = ACTIONS(1626), + [sym_super] = ACTIONS(1626), + [sym_crate] = ACTIONS(1626), + [sym_metavariable] = ACTIONS(1624), + [sym_raw_string_literal] = ACTIONS(1624), + [sym_float_literal] = ACTIONS(1624), [sym_block_comment] = ACTIONS(3), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(1611), - [sym_identifier] = ACTIONS(1613), - [anon_sym_SEMI] = ACTIONS(1611), - [anon_sym_macro_rules_BANG] = ACTIONS(1611), - [anon_sym_LPAREN] = ACTIONS(1611), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_RBRACE] = ACTIONS(1611), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_STAR] = ACTIONS(1611), - [anon_sym_u8] = ACTIONS(1613), - [anon_sym_i8] = ACTIONS(1613), - [anon_sym_u16] = ACTIONS(1613), - [anon_sym_i16] = ACTIONS(1613), - [anon_sym_u32] = ACTIONS(1613), - [anon_sym_i32] = ACTIONS(1613), - [anon_sym_u64] = ACTIONS(1613), - [anon_sym_i64] = ACTIONS(1613), - [anon_sym_u128] = ACTIONS(1613), - [anon_sym_i128] = ACTIONS(1613), - [anon_sym_isize] = ACTIONS(1613), - [anon_sym_usize] = ACTIONS(1613), - [anon_sym_f32] = ACTIONS(1613), - [anon_sym_f64] = ACTIONS(1613), - [anon_sym_bool] = ACTIONS(1613), - [anon_sym_str] = ACTIONS(1613), - [anon_sym_char] = ACTIONS(1613), - [anon_sym_SQUOTE] = ACTIONS(1613), - [anon_sym_async] = ACTIONS(1613), - [anon_sym_break] = ACTIONS(1613), - [anon_sym_const] = ACTIONS(1613), - [anon_sym_continue] = ACTIONS(1613), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_enum] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1613), - [anon_sym_for] = ACTIONS(1613), - [anon_sym_if] = ACTIONS(1613), - [anon_sym_impl] = ACTIONS(1613), - [anon_sym_let] = ACTIONS(1613), - [anon_sym_loop] = ACTIONS(1613), - [anon_sym_match] = ACTIONS(1613), - [anon_sym_mod] = ACTIONS(1613), - [anon_sym_pub] = ACTIONS(1613), - [anon_sym_return] = ACTIONS(1613), - [anon_sym_static] = ACTIONS(1613), - [anon_sym_struct] = ACTIONS(1613), - [anon_sym_trait] = ACTIONS(1613), - [anon_sym_type] = ACTIONS(1613), - [anon_sym_union] = ACTIONS(1613), - [anon_sym_unsafe] = ACTIONS(1613), - [anon_sym_use] = ACTIONS(1613), - [anon_sym_while] = ACTIONS(1613), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_move] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1613), - [sym_super] = ACTIONS(1613), - [sym_crate] = ACTIONS(1613), - [sym_metavariable] = ACTIONS(1611), - [sym_raw_string_literal] = ACTIONS(1611), - [sym_float_literal] = ACTIONS(1611), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), [sym_block_comment] = ACTIONS(3), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(1615), - [sym_identifier] = ACTIONS(1617), - [anon_sym_SEMI] = ACTIONS(1615), - [anon_sym_macro_rules_BANG] = ACTIONS(1615), - [anon_sym_LPAREN] = ACTIONS(1615), - [anon_sym_LBRACE] = ACTIONS(1615), - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_LBRACK] = ACTIONS(1615), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_u8] = ACTIONS(1617), - [anon_sym_i8] = ACTIONS(1617), - [anon_sym_u16] = ACTIONS(1617), - [anon_sym_i16] = ACTIONS(1617), - [anon_sym_u32] = ACTIONS(1617), - [anon_sym_i32] = ACTIONS(1617), - [anon_sym_u64] = ACTIONS(1617), - [anon_sym_i64] = ACTIONS(1617), - [anon_sym_u128] = ACTIONS(1617), - [anon_sym_i128] = ACTIONS(1617), - [anon_sym_isize] = ACTIONS(1617), - [anon_sym_usize] = ACTIONS(1617), - [anon_sym_f32] = ACTIONS(1617), - [anon_sym_f64] = ACTIONS(1617), - [anon_sym_bool] = ACTIONS(1617), - [anon_sym_str] = ACTIONS(1617), - [anon_sym_char] = ACTIONS(1617), - [anon_sym_SQUOTE] = ACTIONS(1617), - [anon_sym_async] = ACTIONS(1617), - [anon_sym_break] = ACTIONS(1617), - [anon_sym_const] = ACTIONS(1617), - [anon_sym_continue] = ACTIONS(1617), - [anon_sym_default] = ACTIONS(1617), - [anon_sym_enum] = ACTIONS(1617), - [anon_sym_fn] = ACTIONS(1617), - [anon_sym_for] = ACTIONS(1617), - [anon_sym_if] = ACTIONS(1617), - [anon_sym_impl] = ACTIONS(1617), - [anon_sym_let] = ACTIONS(1617), - [anon_sym_loop] = ACTIONS(1617), - [anon_sym_match] = ACTIONS(1617), - [anon_sym_mod] = ACTIONS(1617), - [anon_sym_pub] = ACTIONS(1617), - [anon_sym_return] = ACTIONS(1617), - [anon_sym_static] = ACTIONS(1617), - [anon_sym_struct] = ACTIONS(1617), - [anon_sym_trait] = ACTIONS(1617), - [anon_sym_type] = ACTIONS(1617), - [anon_sym_union] = ACTIONS(1617), - [anon_sym_unsafe] = ACTIONS(1617), - [anon_sym_use] = ACTIONS(1617), - [anon_sym_while] = ACTIONS(1617), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_move] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1617), - [sym_super] = ACTIONS(1617), - [sym_crate] = ACTIONS(1617), - [sym_metavariable] = ACTIONS(1615), - [sym_raw_string_literal] = ACTIONS(1615), - [sym_float_literal] = ACTIONS(1615), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), [sym_block_comment] = ACTIONS(3), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(1619), - [sym_identifier] = ACTIONS(1621), - [anon_sym_SEMI] = ACTIONS(1619), - [anon_sym_macro_rules_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_RBRACE] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1619), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_u8] = ACTIONS(1621), - [anon_sym_i8] = ACTIONS(1621), - [anon_sym_u16] = ACTIONS(1621), - [anon_sym_i16] = ACTIONS(1621), - [anon_sym_u32] = ACTIONS(1621), - [anon_sym_i32] = ACTIONS(1621), - [anon_sym_u64] = ACTIONS(1621), - [anon_sym_i64] = ACTIONS(1621), - [anon_sym_u128] = ACTIONS(1621), - [anon_sym_i128] = ACTIONS(1621), - [anon_sym_isize] = ACTIONS(1621), - [anon_sym_usize] = ACTIONS(1621), - [anon_sym_f32] = ACTIONS(1621), - [anon_sym_f64] = ACTIONS(1621), - [anon_sym_bool] = ACTIONS(1621), - [anon_sym_str] = ACTIONS(1621), - [anon_sym_char] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1621), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_break] = ACTIONS(1621), - [anon_sym_const] = ACTIONS(1621), - [anon_sym_continue] = ACTIONS(1621), - [anon_sym_default] = ACTIONS(1621), - [anon_sym_enum] = ACTIONS(1621), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_for] = ACTIONS(1621), - [anon_sym_if] = ACTIONS(1621), - [anon_sym_impl] = ACTIONS(1621), - [anon_sym_let] = ACTIONS(1621), - [anon_sym_loop] = ACTIONS(1621), - [anon_sym_match] = ACTIONS(1621), - [anon_sym_mod] = ACTIONS(1621), - [anon_sym_pub] = ACTIONS(1621), - [anon_sym_return] = ACTIONS(1621), - [anon_sym_static] = ACTIONS(1621), - [anon_sym_struct] = ACTIONS(1621), - [anon_sym_trait] = ACTIONS(1621), - [anon_sym_type] = ACTIONS(1621), - [anon_sym_union] = ACTIONS(1621), - [anon_sym_unsafe] = ACTIONS(1621), - [anon_sym_use] = ACTIONS(1621), - [anon_sym_while] = ACTIONS(1621), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_macro_rules_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_u8] = ACTIONS(1638), + [anon_sym_i8] = ACTIONS(1638), + [anon_sym_u16] = ACTIONS(1638), + [anon_sym_i16] = ACTIONS(1638), + [anon_sym_u32] = ACTIONS(1638), + [anon_sym_i32] = ACTIONS(1638), + [anon_sym_u64] = ACTIONS(1638), + [anon_sym_i64] = ACTIONS(1638), + [anon_sym_u128] = ACTIONS(1638), + [anon_sym_i128] = ACTIONS(1638), + [anon_sym_isize] = ACTIONS(1638), + [anon_sym_usize] = ACTIONS(1638), + [anon_sym_f32] = ACTIONS(1638), + [anon_sym_f64] = ACTIONS(1638), + [anon_sym_bool] = ACTIONS(1638), + [anon_sym_str] = ACTIONS(1638), + [anon_sym_char] = ACTIONS(1638), + [anon_sym_SQUOTE] = ACTIONS(1638), + [anon_sym_async] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_const] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_fn] = ACTIONS(1638), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_impl] = ACTIONS(1638), + [anon_sym_let] = ACTIONS(1638), + [anon_sym_loop] = ACTIONS(1638), + [anon_sym_match] = ACTIONS(1638), + [anon_sym_mod] = ACTIONS(1638), + [anon_sym_pub] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_struct] = ACTIONS(1638), + [anon_sym_trait] = ACTIONS(1638), + [anon_sym_type] = ACTIONS(1638), + [anon_sym_union] = ACTIONS(1638), + [anon_sym_unsafe] = ACTIONS(1638), + [anon_sym_use] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_LT] = ACTIONS(1636), + [anon_sym_COLON_COLON] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_DOT_DOT] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1636), + [anon_sym_move] = ACTIONS(1638), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1636), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1621), - [sym_super] = ACTIONS(1621), - [sym_crate] = ACTIONS(1621), - [sym_metavariable] = ACTIONS(1619), - [sym_raw_string_literal] = ACTIONS(1619), - [sym_float_literal] = ACTIONS(1619), + [sym_self] = ACTIONS(1638), + [sym_super] = ACTIONS(1638), + [sym_crate] = ACTIONS(1638), + [sym_metavariable] = ACTIONS(1636), + [sym_raw_string_literal] = ACTIONS(1636), + [sym_float_literal] = ACTIONS(1636), [sym_block_comment] = ACTIONS(3), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(1623), - [sym_identifier] = ACTIONS(1625), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_macro_rules_BANG] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1623), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1623), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_u8] = ACTIONS(1625), - [anon_sym_i8] = ACTIONS(1625), - [anon_sym_u16] = ACTIONS(1625), - [anon_sym_i16] = ACTIONS(1625), - [anon_sym_u32] = ACTIONS(1625), - [anon_sym_i32] = ACTIONS(1625), - [anon_sym_u64] = ACTIONS(1625), - [anon_sym_i64] = ACTIONS(1625), - [anon_sym_u128] = ACTIONS(1625), - [anon_sym_i128] = ACTIONS(1625), - [anon_sym_isize] = ACTIONS(1625), - [anon_sym_usize] = ACTIONS(1625), - [anon_sym_f32] = ACTIONS(1625), - [anon_sym_f64] = ACTIONS(1625), - [anon_sym_bool] = ACTIONS(1625), - [anon_sym_str] = ACTIONS(1625), - [anon_sym_char] = ACTIONS(1625), - [anon_sym_SQUOTE] = ACTIONS(1625), - [anon_sym_async] = ACTIONS(1625), - [anon_sym_break] = ACTIONS(1625), - [anon_sym_const] = ACTIONS(1625), - [anon_sym_continue] = ACTIONS(1625), - [anon_sym_default] = ACTIONS(1625), - [anon_sym_enum] = ACTIONS(1625), - [anon_sym_fn] = ACTIONS(1625), - [anon_sym_for] = ACTIONS(1625), - [anon_sym_if] = ACTIONS(1625), - [anon_sym_impl] = ACTIONS(1625), - [anon_sym_let] = ACTIONS(1625), - [anon_sym_loop] = ACTIONS(1625), - [anon_sym_match] = ACTIONS(1625), - [anon_sym_mod] = ACTIONS(1625), - [anon_sym_pub] = ACTIONS(1625), - [anon_sym_return] = ACTIONS(1625), - [anon_sym_static] = ACTIONS(1625), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_trait] = ACTIONS(1625), - [anon_sym_type] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(1625), - [anon_sym_unsafe] = ACTIONS(1625), - [anon_sym_use] = ACTIONS(1625), - [anon_sym_while] = ACTIONS(1625), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym_identifier] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_STAR] = ACTIONS(1640), + [anon_sym_u8] = ACTIONS(1642), + [anon_sym_i8] = ACTIONS(1642), + [anon_sym_u16] = ACTIONS(1642), + [anon_sym_i16] = ACTIONS(1642), + [anon_sym_u32] = ACTIONS(1642), + [anon_sym_i32] = ACTIONS(1642), + [anon_sym_u64] = ACTIONS(1642), + [anon_sym_i64] = ACTIONS(1642), + [anon_sym_u128] = ACTIONS(1642), + [anon_sym_i128] = ACTIONS(1642), + [anon_sym_isize] = ACTIONS(1642), + [anon_sym_usize] = ACTIONS(1642), + [anon_sym_f32] = ACTIONS(1642), + [anon_sym_f64] = ACTIONS(1642), + [anon_sym_bool] = ACTIONS(1642), + [anon_sym_str] = ACTIONS(1642), + [anon_sym_char] = ACTIONS(1642), + [anon_sym_SQUOTE] = ACTIONS(1642), + [anon_sym_async] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_continue] = ACTIONS(1642), + [anon_sym_default] = ACTIONS(1642), + [anon_sym_enum] = ACTIONS(1642), + [anon_sym_fn] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_impl] = ACTIONS(1642), + [anon_sym_let] = ACTIONS(1642), + [anon_sym_loop] = ACTIONS(1642), + [anon_sym_match] = ACTIONS(1642), + [anon_sym_mod] = ACTIONS(1642), + [anon_sym_pub] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_static] = ACTIONS(1642), + [anon_sym_struct] = ACTIONS(1642), + [anon_sym_trait] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1642), + [anon_sym_unsafe] = ACTIONS(1642), + [anon_sym_use] = ACTIONS(1642), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_extern] = ACTIONS(1642), + [anon_sym_LT] = ACTIONS(1640), + [anon_sym_COLON_COLON] = ACTIONS(1640), + [anon_sym_AMP] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_move] = ACTIONS(1642), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1640), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1642), + [anon_sym_false] = ACTIONS(1642), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1625), - [sym_super] = ACTIONS(1625), - [sym_crate] = ACTIONS(1625), - [sym_metavariable] = ACTIONS(1623), - [sym_raw_string_literal] = ACTIONS(1623), - [sym_float_literal] = ACTIONS(1623), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1640), + [sym_raw_string_literal] = ACTIONS(1640), + [sym_float_literal] = ACTIONS(1640), [sym_block_comment] = ACTIONS(3), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(1627), - [sym_identifier] = ACTIONS(1629), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_macro_rules_BANG] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_LBRACK] = ACTIONS(1627), - [anon_sym_STAR] = ACTIONS(1627), - [anon_sym_u8] = ACTIONS(1629), - [anon_sym_i8] = ACTIONS(1629), - [anon_sym_u16] = ACTIONS(1629), - [anon_sym_i16] = ACTIONS(1629), - [anon_sym_u32] = ACTIONS(1629), - [anon_sym_i32] = ACTIONS(1629), - [anon_sym_u64] = ACTIONS(1629), - [anon_sym_i64] = ACTIONS(1629), - [anon_sym_u128] = ACTIONS(1629), - [anon_sym_i128] = ACTIONS(1629), - [anon_sym_isize] = ACTIONS(1629), - [anon_sym_usize] = ACTIONS(1629), - [anon_sym_f32] = ACTIONS(1629), - [anon_sym_f64] = ACTIONS(1629), - [anon_sym_bool] = ACTIONS(1629), - [anon_sym_str] = ACTIONS(1629), - [anon_sym_char] = ACTIONS(1629), - [anon_sym_SQUOTE] = ACTIONS(1629), - [anon_sym_async] = ACTIONS(1629), - [anon_sym_break] = ACTIONS(1629), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_continue] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_enum] = ACTIONS(1629), - [anon_sym_fn] = ACTIONS(1629), - [anon_sym_for] = ACTIONS(1629), - [anon_sym_if] = ACTIONS(1629), - [anon_sym_impl] = ACTIONS(1629), - [anon_sym_let] = ACTIONS(1629), - [anon_sym_loop] = ACTIONS(1629), - [anon_sym_match] = ACTIONS(1629), - [anon_sym_mod] = ACTIONS(1629), - [anon_sym_pub] = ACTIONS(1629), - [anon_sym_return] = ACTIONS(1629), - [anon_sym_static] = ACTIONS(1629), - [anon_sym_struct] = ACTIONS(1629), - [anon_sym_trait] = ACTIONS(1629), - [anon_sym_type] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_unsafe] = ACTIONS(1629), - [anon_sym_use] = ACTIONS(1629), - [anon_sym_while] = ACTIONS(1629), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1644), + [sym_identifier] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_macro_rules_BANG] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1644), + [anon_sym_u8] = ACTIONS(1646), + [anon_sym_i8] = ACTIONS(1646), + [anon_sym_u16] = ACTIONS(1646), + [anon_sym_i16] = ACTIONS(1646), + [anon_sym_u32] = ACTIONS(1646), + [anon_sym_i32] = ACTIONS(1646), + [anon_sym_u64] = ACTIONS(1646), + [anon_sym_i64] = ACTIONS(1646), + [anon_sym_u128] = ACTIONS(1646), + [anon_sym_i128] = ACTIONS(1646), + [anon_sym_isize] = ACTIONS(1646), + [anon_sym_usize] = ACTIONS(1646), + [anon_sym_f32] = ACTIONS(1646), + [anon_sym_f64] = ACTIONS(1646), + [anon_sym_bool] = ACTIONS(1646), + [anon_sym_str] = ACTIONS(1646), + [anon_sym_char] = ACTIONS(1646), + [anon_sym_SQUOTE] = ACTIONS(1646), + [anon_sym_async] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_enum] = ACTIONS(1646), + [anon_sym_fn] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_impl] = ACTIONS(1646), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_loop] = ACTIONS(1646), + [anon_sym_match] = ACTIONS(1646), + [anon_sym_mod] = ACTIONS(1646), + [anon_sym_pub] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_struct] = ACTIONS(1646), + [anon_sym_trait] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_union] = ACTIONS(1646), + [anon_sym_unsafe] = ACTIONS(1646), + [anon_sym_use] = ACTIONS(1646), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_extern] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1644), + [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_DOT_DOT] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_move] = ACTIONS(1646), + [sym_integer_literal] = ACTIONS(1644), + [aux_sym_string_literal_token1] = ACTIONS(1644), + [sym_char_literal] = ACTIONS(1644), + [anon_sym_true] = ACTIONS(1646), + [anon_sym_false] = ACTIONS(1646), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1629), - [sym_super] = ACTIONS(1629), - [sym_crate] = ACTIONS(1629), - [sym_metavariable] = ACTIONS(1627), - [sym_raw_string_literal] = ACTIONS(1627), - [sym_float_literal] = ACTIONS(1627), + [sym_self] = ACTIONS(1646), + [sym_super] = ACTIONS(1646), + [sym_crate] = ACTIONS(1646), + [sym_metavariable] = ACTIONS(1644), + [sym_raw_string_literal] = ACTIONS(1644), + [sym_float_literal] = ACTIONS(1644), [sym_block_comment] = ACTIONS(3), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(1631), - [sym_identifier] = ACTIONS(1633), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_macro_rules_BANG] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_STAR] = ACTIONS(1631), - [anon_sym_u8] = ACTIONS(1633), - [anon_sym_i8] = ACTIONS(1633), - [anon_sym_u16] = ACTIONS(1633), - [anon_sym_i16] = ACTIONS(1633), - [anon_sym_u32] = ACTIONS(1633), - [anon_sym_i32] = ACTIONS(1633), - [anon_sym_u64] = ACTIONS(1633), - [anon_sym_i64] = ACTIONS(1633), - [anon_sym_u128] = ACTIONS(1633), - [anon_sym_i128] = ACTIONS(1633), - [anon_sym_isize] = ACTIONS(1633), - [anon_sym_usize] = ACTIONS(1633), - [anon_sym_f32] = ACTIONS(1633), - [anon_sym_f64] = ACTIONS(1633), - [anon_sym_bool] = ACTIONS(1633), - [anon_sym_str] = ACTIONS(1633), - [anon_sym_char] = ACTIONS(1633), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_async] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_default] = ACTIONS(1633), - [anon_sym_enum] = ACTIONS(1633), - [anon_sym_fn] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_impl] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_mod] = ACTIONS(1633), - [anon_sym_pub] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_static] = ACTIONS(1633), - [anon_sym_struct] = ACTIONS(1633), - [anon_sym_trait] = ACTIONS(1633), - [anon_sym_type] = ACTIONS(1633), - [anon_sym_union] = ACTIONS(1633), - [anon_sym_unsafe] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1650), + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_macro_rules_BANG] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_u8] = ACTIONS(1650), + [anon_sym_i8] = ACTIONS(1650), + [anon_sym_u16] = ACTIONS(1650), + [anon_sym_i16] = ACTIONS(1650), + [anon_sym_u32] = ACTIONS(1650), + [anon_sym_i32] = ACTIONS(1650), + [anon_sym_u64] = ACTIONS(1650), + [anon_sym_i64] = ACTIONS(1650), + [anon_sym_u128] = ACTIONS(1650), + [anon_sym_i128] = ACTIONS(1650), + [anon_sym_isize] = ACTIONS(1650), + [anon_sym_usize] = ACTIONS(1650), + [anon_sym_f32] = ACTIONS(1650), + [anon_sym_f64] = ACTIONS(1650), + [anon_sym_bool] = ACTIONS(1650), + [anon_sym_str] = ACTIONS(1650), + [anon_sym_char] = ACTIONS(1650), + [anon_sym_SQUOTE] = ACTIONS(1650), + [anon_sym_async] = ACTIONS(1650), + [anon_sym_break] = ACTIONS(1650), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_continue] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1650), + [anon_sym_enum] = ACTIONS(1650), + [anon_sym_fn] = ACTIONS(1650), + [anon_sym_for] = ACTIONS(1650), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_impl] = ACTIONS(1650), + [anon_sym_let] = ACTIONS(1650), + [anon_sym_loop] = ACTIONS(1650), + [anon_sym_match] = ACTIONS(1650), + [anon_sym_mod] = ACTIONS(1650), + [anon_sym_pub] = ACTIONS(1650), + [anon_sym_return] = ACTIONS(1650), + [anon_sym_static] = ACTIONS(1650), + [anon_sym_struct] = ACTIONS(1650), + [anon_sym_trait] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), + [anon_sym_union] = ACTIONS(1650), + [anon_sym_unsafe] = ACTIONS(1650), + [anon_sym_use] = ACTIONS(1650), + [anon_sym_while] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_BANG] = ACTIONS(1648), + [anon_sym_extern] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_DOT_DOT] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), + [anon_sym_move] = ACTIONS(1650), + [sym_integer_literal] = ACTIONS(1648), + [aux_sym_string_literal_token1] = ACTIONS(1648), + [sym_char_literal] = ACTIONS(1648), + [anon_sym_true] = ACTIONS(1650), + [anon_sym_false] = ACTIONS(1650), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1633), - [sym_super] = ACTIONS(1633), - [sym_crate] = ACTIONS(1633), - [sym_metavariable] = ACTIONS(1631), - [sym_raw_string_literal] = ACTIONS(1631), - [sym_float_literal] = ACTIONS(1631), + [sym_self] = ACTIONS(1650), + [sym_super] = ACTIONS(1650), + [sym_crate] = ACTIONS(1650), + [sym_metavariable] = ACTIONS(1648), + [sym_raw_string_literal] = ACTIONS(1648), + [sym_float_literal] = ACTIONS(1648), [sym_block_comment] = ACTIONS(3), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(1635), - [sym_identifier] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1635), - [anon_sym_macro_rules_BANG] = ACTIONS(1635), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACE] = ACTIONS(1635), - [anon_sym_RBRACE] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1635), - [anon_sym_STAR] = ACTIONS(1635), - [anon_sym_u8] = ACTIONS(1637), - [anon_sym_i8] = ACTIONS(1637), - [anon_sym_u16] = ACTIONS(1637), - [anon_sym_i16] = ACTIONS(1637), - [anon_sym_u32] = ACTIONS(1637), - [anon_sym_i32] = ACTIONS(1637), - [anon_sym_u64] = ACTIONS(1637), - [anon_sym_i64] = ACTIONS(1637), - [anon_sym_u128] = ACTIONS(1637), - [anon_sym_i128] = ACTIONS(1637), - [anon_sym_isize] = ACTIONS(1637), - [anon_sym_usize] = ACTIONS(1637), - [anon_sym_f32] = ACTIONS(1637), - [anon_sym_f64] = ACTIONS(1637), - [anon_sym_bool] = ACTIONS(1637), - [anon_sym_str] = ACTIONS(1637), - [anon_sym_char] = ACTIONS(1637), - [anon_sym_SQUOTE] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [anon_sym_fn] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_impl] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_loop] = ACTIONS(1637), - [anon_sym_match] = ACTIONS(1637), - [anon_sym_mod] = ACTIONS(1637), - [anon_sym_pub] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_struct] = ACTIONS(1637), - [anon_sym_trait] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_union] = ACTIONS(1637), - [anon_sym_unsafe] = ACTIONS(1637), - [anon_sym_use] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_macro_rules_BANG] = ACTIONS(1652), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_RBRACE] = ACTIONS(1652), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_STAR] = ACTIONS(1652), + [anon_sym_u8] = ACTIONS(1654), + [anon_sym_i8] = ACTIONS(1654), + [anon_sym_u16] = ACTIONS(1654), + [anon_sym_i16] = ACTIONS(1654), + [anon_sym_u32] = ACTIONS(1654), + [anon_sym_i32] = ACTIONS(1654), + [anon_sym_u64] = ACTIONS(1654), + [anon_sym_i64] = ACTIONS(1654), + [anon_sym_u128] = ACTIONS(1654), + [anon_sym_i128] = ACTIONS(1654), + [anon_sym_isize] = ACTIONS(1654), + [anon_sym_usize] = ACTIONS(1654), + [anon_sym_f32] = ACTIONS(1654), + [anon_sym_f64] = ACTIONS(1654), + [anon_sym_bool] = ACTIONS(1654), + [anon_sym_str] = ACTIONS(1654), + [anon_sym_char] = ACTIONS(1654), + [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_async] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(1654), + [anon_sym_default] = ACTIONS(1654), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_impl] = ACTIONS(1654), + [anon_sym_let] = ACTIONS(1654), + [anon_sym_loop] = ACTIONS(1654), + [anon_sym_match] = ACTIONS(1654), + [anon_sym_mod] = ACTIONS(1654), + [anon_sym_pub] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_static] = ACTIONS(1654), + [anon_sym_struct] = ACTIONS(1654), + [anon_sym_trait] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_union] = ACTIONS(1654), + [anon_sym_unsafe] = ACTIONS(1654), + [anon_sym_use] = ACTIONS(1654), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_POUND] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_extern] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_AMP] = ACTIONS(1652), + [anon_sym_DOT_DOT] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_move] = ACTIONS(1654), + [sym_integer_literal] = ACTIONS(1652), + [aux_sym_string_literal_token1] = ACTIONS(1652), + [sym_char_literal] = ACTIONS(1652), + [anon_sym_true] = ACTIONS(1654), + [anon_sym_false] = ACTIONS(1654), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_crate] = ACTIONS(1637), - [sym_metavariable] = ACTIONS(1635), - [sym_raw_string_literal] = ACTIONS(1635), - [sym_float_literal] = ACTIONS(1635), + [sym_self] = ACTIONS(1654), + [sym_super] = ACTIONS(1654), + [sym_crate] = ACTIONS(1654), + [sym_metavariable] = ACTIONS(1652), + [sym_raw_string_literal] = ACTIONS(1652), + [sym_float_literal] = ACTIONS(1652), [sym_block_comment] = ACTIONS(3), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(1639), - [sym_identifier] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1639), - [anon_sym_macro_rules_BANG] = ACTIONS(1639), - [anon_sym_LPAREN] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_RBRACE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1639), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_u8] = ACTIONS(1641), - [anon_sym_i8] = ACTIONS(1641), - [anon_sym_u16] = ACTIONS(1641), - [anon_sym_i16] = ACTIONS(1641), - [anon_sym_u32] = ACTIONS(1641), - [anon_sym_i32] = ACTIONS(1641), - [anon_sym_u64] = ACTIONS(1641), - [anon_sym_i64] = ACTIONS(1641), - [anon_sym_u128] = ACTIONS(1641), - [anon_sym_i128] = ACTIONS(1641), - [anon_sym_isize] = ACTIONS(1641), - [anon_sym_usize] = ACTIONS(1641), - [anon_sym_f32] = ACTIONS(1641), - [anon_sym_f64] = ACTIONS(1641), - [anon_sym_bool] = ACTIONS(1641), - [anon_sym_str] = ACTIONS(1641), - [anon_sym_char] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(1641), - [anon_sym_async] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_default] = ACTIONS(1641), - [anon_sym_enum] = ACTIONS(1641), - [anon_sym_fn] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_impl] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_mod] = ACTIONS(1641), - [anon_sym_pub] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1641), - [anon_sym_struct] = ACTIONS(1641), - [anon_sym_trait] = ACTIONS(1641), - [anon_sym_type] = ACTIONS(1641), - [anon_sym_union] = ACTIONS(1641), - [anon_sym_unsafe] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_macro_rules_BANG] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_u8] = ACTIONS(1658), + [anon_sym_i8] = ACTIONS(1658), + [anon_sym_u16] = ACTIONS(1658), + [anon_sym_i16] = ACTIONS(1658), + [anon_sym_u32] = ACTIONS(1658), + [anon_sym_i32] = ACTIONS(1658), + [anon_sym_u64] = ACTIONS(1658), + [anon_sym_i64] = ACTIONS(1658), + [anon_sym_u128] = ACTIONS(1658), + [anon_sym_i128] = ACTIONS(1658), + [anon_sym_isize] = ACTIONS(1658), + [anon_sym_usize] = ACTIONS(1658), + [anon_sym_f32] = ACTIONS(1658), + [anon_sym_f64] = ACTIONS(1658), + [anon_sym_bool] = ACTIONS(1658), + [anon_sym_str] = ACTIONS(1658), + [anon_sym_char] = ACTIONS(1658), + [anon_sym_SQUOTE] = ACTIONS(1658), + [anon_sym_async] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_continue] = ACTIONS(1658), + [anon_sym_default] = ACTIONS(1658), + [anon_sym_enum] = ACTIONS(1658), + [anon_sym_fn] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1658), + [anon_sym_loop] = ACTIONS(1658), + [anon_sym_match] = ACTIONS(1658), + [anon_sym_mod] = ACTIONS(1658), + [anon_sym_pub] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_static] = ACTIONS(1658), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_trait] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1658), + [anon_sym_unsafe] = ACTIONS(1658), + [anon_sym_use] = ACTIONS(1658), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_COLON_COLON] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_move] = ACTIONS(1658), + [sym_integer_literal] = ACTIONS(1656), + [aux_sym_string_literal_token1] = ACTIONS(1656), + [sym_char_literal] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1641), - [sym_super] = ACTIONS(1641), - [sym_crate] = ACTIONS(1641), - [sym_metavariable] = ACTIONS(1639), - [sym_raw_string_literal] = ACTIONS(1639), - [sym_float_literal] = ACTIONS(1639), + [sym_self] = ACTIONS(1658), + [sym_super] = ACTIONS(1658), + [sym_crate] = ACTIONS(1658), + [sym_metavariable] = ACTIONS(1656), + [sym_raw_string_literal] = ACTIONS(1656), + [sym_float_literal] = ACTIONS(1656), [sym_block_comment] = ACTIONS(3), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(1643), - [sym_identifier] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_macro_rules_BANG] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_STAR] = ACTIONS(1643), - [anon_sym_u8] = ACTIONS(1645), - [anon_sym_i8] = ACTIONS(1645), - [anon_sym_u16] = ACTIONS(1645), - [anon_sym_i16] = ACTIONS(1645), - [anon_sym_u32] = ACTIONS(1645), - [anon_sym_i32] = ACTIONS(1645), - [anon_sym_u64] = ACTIONS(1645), - [anon_sym_i64] = ACTIONS(1645), - [anon_sym_u128] = ACTIONS(1645), - [anon_sym_i128] = ACTIONS(1645), - [anon_sym_isize] = ACTIONS(1645), - [anon_sym_usize] = ACTIONS(1645), - [anon_sym_f32] = ACTIONS(1645), - [anon_sym_f64] = ACTIONS(1645), - [anon_sym_bool] = ACTIONS(1645), - [anon_sym_str] = ACTIONS(1645), - [anon_sym_char] = ACTIONS(1645), - [anon_sym_SQUOTE] = ACTIONS(1645), - [anon_sym_async] = ACTIONS(1645), - [anon_sym_break] = ACTIONS(1645), - [anon_sym_const] = ACTIONS(1645), - [anon_sym_continue] = ACTIONS(1645), - [anon_sym_default] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1645), - [anon_sym_fn] = ACTIONS(1645), - [anon_sym_for] = ACTIONS(1645), - [anon_sym_if] = ACTIONS(1645), - [anon_sym_impl] = ACTIONS(1645), - [anon_sym_let] = ACTIONS(1645), - [anon_sym_loop] = ACTIONS(1645), - [anon_sym_match] = ACTIONS(1645), - [anon_sym_mod] = ACTIONS(1645), - [anon_sym_pub] = ACTIONS(1645), - [anon_sym_return] = ACTIONS(1645), - [anon_sym_static] = ACTIONS(1645), - [anon_sym_struct] = ACTIONS(1645), - [anon_sym_trait] = ACTIONS(1645), - [anon_sym_type] = ACTIONS(1645), - [anon_sym_union] = ACTIONS(1645), - [anon_sym_unsafe] = ACTIONS(1645), - [anon_sym_use] = ACTIONS(1645), - [anon_sym_while] = ACTIONS(1645), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1660), + [sym_identifier] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_macro_rules_BANG] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_STAR] = ACTIONS(1660), + [anon_sym_u8] = ACTIONS(1662), + [anon_sym_i8] = ACTIONS(1662), + [anon_sym_u16] = ACTIONS(1662), + [anon_sym_i16] = ACTIONS(1662), + [anon_sym_u32] = ACTIONS(1662), + [anon_sym_i32] = ACTIONS(1662), + [anon_sym_u64] = ACTIONS(1662), + [anon_sym_i64] = ACTIONS(1662), + [anon_sym_u128] = ACTIONS(1662), + [anon_sym_i128] = ACTIONS(1662), + [anon_sym_isize] = ACTIONS(1662), + [anon_sym_usize] = ACTIONS(1662), + [anon_sym_f32] = ACTIONS(1662), + [anon_sym_f64] = ACTIONS(1662), + [anon_sym_bool] = ACTIONS(1662), + [anon_sym_str] = ACTIONS(1662), + [anon_sym_char] = ACTIONS(1662), + [anon_sym_SQUOTE] = ACTIONS(1662), + [anon_sym_async] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(1662), + [anon_sym_default] = ACTIONS(1662), + [anon_sym_enum] = ACTIONS(1662), + [anon_sym_fn] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_impl] = ACTIONS(1662), + [anon_sym_let] = ACTIONS(1662), + [anon_sym_loop] = ACTIONS(1662), + [anon_sym_match] = ACTIONS(1662), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_static] = ACTIONS(1662), + [anon_sym_struct] = ACTIONS(1662), + [anon_sym_trait] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_union] = ACTIONS(1662), + [anon_sym_unsafe] = ACTIONS(1662), + [anon_sym_use] = ACTIONS(1662), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_POUND] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_extern] = ACTIONS(1662), + [anon_sym_LT] = ACTIONS(1660), + [anon_sym_COLON_COLON] = ACTIONS(1660), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_DOT_DOT] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_move] = ACTIONS(1662), + [sym_integer_literal] = ACTIONS(1660), + [aux_sym_string_literal_token1] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [anon_sym_true] = ACTIONS(1662), + [anon_sym_false] = ACTIONS(1662), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1645), - [sym_super] = ACTIONS(1645), - [sym_crate] = ACTIONS(1645), - [sym_metavariable] = ACTIONS(1643), - [sym_raw_string_literal] = ACTIONS(1643), - [sym_float_literal] = ACTIONS(1643), + [sym_self] = ACTIONS(1662), + [sym_super] = ACTIONS(1662), + [sym_crate] = ACTIONS(1662), + [sym_metavariable] = ACTIONS(1660), + [sym_raw_string_literal] = ACTIONS(1660), + [sym_float_literal] = ACTIONS(1660), [sym_block_comment] = ACTIONS(3), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(1647), - [sym_identifier] = ACTIONS(1649), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_macro_rules_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1647), - [anon_sym_RBRACE] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_u8] = ACTIONS(1649), - [anon_sym_i8] = ACTIONS(1649), - [anon_sym_u16] = ACTIONS(1649), - [anon_sym_i16] = ACTIONS(1649), - [anon_sym_u32] = ACTIONS(1649), - [anon_sym_i32] = ACTIONS(1649), - [anon_sym_u64] = ACTIONS(1649), - [anon_sym_i64] = ACTIONS(1649), - [anon_sym_u128] = ACTIONS(1649), - [anon_sym_i128] = ACTIONS(1649), - [anon_sym_isize] = ACTIONS(1649), - [anon_sym_usize] = ACTIONS(1649), - [anon_sym_f32] = ACTIONS(1649), - [anon_sym_f64] = ACTIONS(1649), - [anon_sym_bool] = ACTIONS(1649), - [anon_sym_str] = ACTIONS(1649), - [anon_sym_char] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [anon_sym_async] = ACTIONS(1649), - [anon_sym_break] = ACTIONS(1649), - [anon_sym_const] = ACTIONS(1649), - [anon_sym_continue] = ACTIONS(1649), - [anon_sym_default] = ACTIONS(1649), - [anon_sym_enum] = ACTIONS(1649), - [anon_sym_fn] = ACTIONS(1649), - [anon_sym_for] = ACTIONS(1649), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_impl] = ACTIONS(1649), - [anon_sym_let] = ACTIONS(1649), - [anon_sym_loop] = ACTIONS(1649), - [anon_sym_match] = ACTIONS(1649), - [anon_sym_mod] = ACTIONS(1649), - [anon_sym_pub] = ACTIONS(1649), - [anon_sym_return] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1649), - [anon_sym_struct] = ACTIONS(1649), - [anon_sym_trait] = ACTIONS(1649), - [anon_sym_type] = ACTIONS(1649), - [anon_sym_union] = ACTIONS(1649), - [anon_sym_unsafe] = ACTIONS(1649), - [anon_sym_use] = ACTIONS(1649), - [anon_sym_while] = ACTIONS(1649), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1664), + [sym_identifier] = ACTIONS(1666), + [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_macro_rules_BANG] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(1664), + [anon_sym_u8] = ACTIONS(1666), + [anon_sym_i8] = ACTIONS(1666), + [anon_sym_u16] = ACTIONS(1666), + [anon_sym_i16] = ACTIONS(1666), + [anon_sym_u32] = ACTIONS(1666), + [anon_sym_i32] = ACTIONS(1666), + [anon_sym_u64] = ACTIONS(1666), + [anon_sym_i64] = ACTIONS(1666), + [anon_sym_u128] = ACTIONS(1666), + [anon_sym_i128] = ACTIONS(1666), + [anon_sym_isize] = ACTIONS(1666), + [anon_sym_usize] = ACTIONS(1666), + [anon_sym_f32] = ACTIONS(1666), + [anon_sym_f64] = ACTIONS(1666), + [anon_sym_bool] = ACTIONS(1666), + [anon_sym_str] = ACTIONS(1666), + [anon_sym_char] = ACTIONS(1666), + [anon_sym_SQUOTE] = ACTIONS(1666), + [anon_sym_async] = ACTIONS(1666), + [anon_sym_break] = ACTIONS(1666), + [anon_sym_const] = ACTIONS(1666), + [anon_sym_continue] = ACTIONS(1666), + [anon_sym_default] = ACTIONS(1666), + [anon_sym_enum] = ACTIONS(1666), + [anon_sym_fn] = ACTIONS(1666), + [anon_sym_for] = ACTIONS(1666), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_impl] = ACTIONS(1666), + [anon_sym_let] = ACTIONS(1666), + [anon_sym_loop] = ACTIONS(1666), + [anon_sym_match] = ACTIONS(1666), + [anon_sym_mod] = ACTIONS(1666), + [anon_sym_pub] = ACTIONS(1666), + [anon_sym_return] = ACTIONS(1666), + [anon_sym_static] = ACTIONS(1666), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1666), + [anon_sym_type] = ACTIONS(1666), + [anon_sym_union] = ACTIONS(1666), + [anon_sym_unsafe] = ACTIONS(1666), + [anon_sym_use] = ACTIONS(1666), + [anon_sym_while] = ACTIONS(1666), + [anon_sym_POUND] = ACTIONS(1664), + [anon_sym_BANG] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1664), + [anon_sym_COLON_COLON] = ACTIONS(1664), + [anon_sym_AMP] = ACTIONS(1664), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_PIPE] = ACTIONS(1664), + [anon_sym_move] = ACTIONS(1666), + [sym_integer_literal] = ACTIONS(1664), + [aux_sym_string_literal_token1] = ACTIONS(1664), + [sym_char_literal] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1666), + [anon_sym_false] = ACTIONS(1666), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1649), - [sym_super] = ACTIONS(1649), - [sym_crate] = ACTIONS(1649), - [sym_metavariable] = ACTIONS(1647), - [sym_raw_string_literal] = ACTIONS(1647), - [sym_float_literal] = ACTIONS(1647), + [sym_self] = ACTIONS(1666), + [sym_super] = ACTIONS(1666), + [sym_crate] = ACTIONS(1666), + [sym_metavariable] = ACTIONS(1664), + [sym_raw_string_literal] = ACTIONS(1664), + [sym_float_literal] = ACTIONS(1664), [sym_block_comment] = ACTIONS(3), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(1651), - [sym_identifier] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_macro_rules_BANG] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_SQUOTE] = ACTIONS(1653), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1653), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_impl] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_mod] = ACTIONS(1653), - [anon_sym_pub] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_static] = ACTIONS(1653), - [anon_sym_struct] = ACTIONS(1653), - [anon_sym_trait] = ACTIONS(1653), - [anon_sym_type] = ACTIONS(1653), - [anon_sym_union] = ACTIONS(1653), - [anon_sym_unsafe] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_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_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), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym_identifier] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_macro_rules_BANG] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_u8] = ACTIONS(1670), + [anon_sym_i8] = ACTIONS(1670), + [anon_sym_u16] = ACTIONS(1670), + [anon_sym_i16] = ACTIONS(1670), + [anon_sym_u32] = ACTIONS(1670), + [anon_sym_i32] = ACTIONS(1670), + [anon_sym_u64] = ACTIONS(1670), + [anon_sym_i64] = ACTIONS(1670), + [anon_sym_u128] = ACTIONS(1670), + [anon_sym_i128] = ACTIONS(1670), + [anon_sym_isize] = ACTIONS(1670), + [anon_sym_usize] = ACTIONS(1670), + [anon_sym_f32] = ACTIONS(1670), + [anon_sym_f64] = ACTIONS(1670), + [anon_sym_bool] = ACTIONS(1670), + [anon_sym_str] = ACTIONS(1670), + [anon_sym_char] = ACTIONS(1670), + [anon_sym_SQUOTE] = ACTIONS(1670), + [anon_sym_async] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1670), + [anon_sym_enum] = ACTIONS(1670), + [anon_sym_fn] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_impl] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_mod] = ACTIONS(1670), + [anon_sym_pub] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_static] = ACTIONS(1670), + [anon_sym_struct] = ACTIONS(1670), + [anon_sym_trait] = ACTIONS(1670), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1670), + [anon_sym_unsafe] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(1668), + [anon_sym_BANG] = ACTIONS(1668), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_COLON_COLON] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_move] = ACTIONS(1670), + [sym_integer_literal] = ACTIONS(1668), + [aux_sym_string_literal_token1] = ACTIONS(1668), + [sym_char_literal] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1653), - [sym_super] = ACTIONS(1653), - [sym_crate] = ACTIONS(1653), - [sym_metavariable] = ACTIONS(1651), - [sym_raw_string_literal] = ACTIONS(1651), - [sym_float_literal] = ACTIONS(1651), + [sym_self] = ACTIONS(1670), + [sym_super] = ACTIONS(1670), + [sym_crate] = ACTIONS(1670), + [sym_metavariable] = ACTIONS(1668), + [sym_raw_string_literal] = ACTIONS(1668), + [sym_float_literal] = ACTIONS(1668), [sym_block_comment] = ACTIONS(3), }, [399] = { - [sym__token_pattern] = STATE(217), - [sym_token_tree_pattern] = STATE(217), - [sym_token_binding_pattern] = STATE(217), - [sym_token_repetition_pattern] = STATE(217), - [sym__literal] = STATE(217), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(217), - [sym_identifier] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1209), - [anon_sym_i8] = ACTIONS(1209), - [anon_sym_u16] = ACTIONS(1209), - [anon_sym_i16] = ACTIONS(1209), - [anon_sym_u32] = ACTIONS(1209), - [anon_sym_i32] = ACTIONS(1209), - [anon_sym_u64] = ACTIONS(1209), - [anon_sym_i64] = ACTIONS(1209), - [anon_sym_u128] = ACTIONS(1209), - [anon_sym_i128] = ACTIONS(1209), - [anon_sym_isize] = ACTIONS(1209), - [anon_sym_usize] = ACTIONS(1209), - [anon_sym_f32] = ACTIONS(1209), - [anon_sym_f64] = ACTIONS(1209), - [anon_sym_bool] = ACTIONS(1209), - [anon_sym_str] = ACTIONS(1209), - [anon_sym_char] = ACTIONS(1209), - [aux_sym__non_special_token_token1] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(1209), - [anon_sym_as] = ACTIONS(1209), - [anon_sym_async] = ACTIONS(1209), - [anon_sym_await] = ACTIONS(1209), - [anon_sym_break] = ACTIONS(1209), - [anon_sym_const] = ACTIONS(1209), - [anon_sym_continue] = ACTIONS(1209), - [anon_sym_default] = ACTIONS(1209), - [anon_sym_enum] = ACTIONS(1209), - [anon_sym_fn] = ACTIONS(1209), - [anon_sym_for] = ACTIONS(1209), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_impl] = ACTIONS(1209), - [anon_sym_let] = ACTIONS(1209), - [anon_sym_loop] = ACTIONS(1209), - [anon_sym_match] = ACTIONS(1209), - [anon_sym_mod] = ACTIONS(1209), - [anon_sym_pub] = ACTIONS(1209), - [anon_sym_return] = ACTIONS(1209), - [anon_sym_static] = ACTIONS(1209), - [anon_sym_struct] = ACTIONS(1209), - [anon_sym_trait] = ACTIONS(1209), - [anon_sym_type] = ACTIONS(1209), - [anon_sym_union] = ACTIONS(1209), - [anon_sym_unsafe] = ACTIONS(1209), - [anon_sym_use] = ACTIONS(1209), - [anon_sym_where] = ACTIONS(1209), - [anon_sym_while] = ACTIONS(1209), - [sym_mutable_specifier] = ACTIONS(1209), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1209), - [sym_super] = ACTIONS(1209), - [sym_crate] = ACTIONS(1209), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym_identifier] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_macro_rules_BANG] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1674), + [anon_sym_i8] = ACTIONS(1674), + [anon_sym_u16] = ACTIONS(1674), + [anon_sym_i16] = ACTIONS(1674), + [anon_sym_u32] = ACTIONS(1674), + [anon_sym_i32] = ACTIONS(1674), + [anon_sym_u64] = ACTIONS(1674), + [anon_sym_i64] = ACTIONS(1674), + [anon_sym_u128] = ACTIONS(1674), + [anon_sym_i128] = ACTIONS(1674), + [anon_sym_isize] = ACTIONS(1674), + [anon_sym_usize] = ACTIONS(1674), + [anon_sym_f32] = ACTIONS(1674), + [anon_sym_f64] = ACTIONS(1674), + [anon_sym_bool] = ACTIONS(1674), + [anon_sym_str] = ACTIONS(1674), + [anon_sym_char] = ACTIONS(1674), + [anon_sym_SQUOTE] = ACTIONS(1674), + [anon_sym_async] = ACTIONS(1674), + [anon_sym_break] = ACTIONS(1674), + [anon_sym_const] = ACTIONS(1674), + [anon_sym_continue] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1674), + [anon_sym_enum] = ACTIONS(1674), + [anon_sym_fn] = ACTIONS(1674), + [anon_sym_for] = ACTIONS(1674), + [anon_sym_if] = ACTIONS(1674), + [anon_sym_impl] = ACTIONS(1674), + [anon_sym_let] = ACTIONS(1674), + [anon_sym_loop] = ACTIONS(1674), + [anon_sym_match] = ACTIONS(1674), + [anon_sym_mod] = ACTIONS(1674), + [anon_sym_pub] = ACTIONS(1674), + [anon_sym_return] = ACTIONS(1674), + [anon_sym_static] = ACTIONS(1674), + [anon_sym_struct] = ACTIONS(1674), + [anon_sym_trait] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1674), + [anon_sym_union] = ACTIONS(1674), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1674), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_POUND] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1672), + [anon_sym_extern] = ACTIONS(1674), + [anon_sym_LT] = ACTIONS(1672), + [anon_sym_COLON_COLON] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_move] = ACTIONS(1674), + [sym_integer_literal] = ACTIONS(1672), + [aux_sym_string_literal_token1] = ACTIONS(1672), + [sym_char_literal] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1674), + [anon_sym_false] = ACTIONS(1674), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1674), + [sym_super] = ACTIONS(1674), + [sym_crate] = ACTIONS(1674), + [sym_metavariable] = ACTIONS(1672), + [sym_raw_string_literal] = ACTIONS(1672), + [sym_float_literal] = ACTIONS(1672), [sym_block_comment] = ACTIONS(3), }, [400] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1660), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_RBRACK] = ACTIONS(1663), - [anon_sym_DOLLAR] = ACTIONS(1671), - [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), - [aux_sym__non_special_token_token1] = ACTIONS(1657), - [anon_sym_SQUOTE] = ACTIONS(1657), - [anon_sym_as] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1657), - [anon_sym_await] = 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_where] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [sym_mutable_specifier] = ACTIONS(1657), - [sym_integer_literal] = ACTIONS(1674), - [aux_sym_string_literal_token1] = ACTIONS(1677), - [sym_char_literal] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1657), - [sym_super] = ACTIONS(1657), - [sym_crate] = ACTIONS(1657), - [sym_metavariable] = ACTIONS(1683), - [sym_raw_string_literal] = ACTIONS(1674), - [sym_float_literal] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1676), + [sym_identifier] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_macro_rules_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_u8] = ACTIONS(1678), + [anon_sym_i8] = ACTIONS(1678), + [anon_sym_u16] = ACTIONS(1678), + [anon_sym_i16] = ACTIONS(1678), + [anon_sym_u32] = ACTIONS(1678), + [anon_sym_i32] = ACTIONS(1678), + [anon_sym_u64] = ACTIONS(1678), + [anon_sym_i64] = ACTIONS(1678), + [anon_sym_u128] = ACTIONS(1678), + [anon_sym_i128] = ACTIONS(1678), + [anon_sym_isize] = ACTIONS(1678), + [anon_sym_usize] = ACTIONS(1678), + [anon_sym_f32] = ACTIONS(1678), + [anon_sym_f64] = ACTIONS(1678), + [anon_sym_bool] = ACTIONS(1678), + [anon_sym_str] = ACTIONS(1678), + [anon_sym_char] = ACTIONS(1678), + [anon_sym_SQUOTE] = ACTIONS(1678), + [anon_sym_async] = ACTIONS(1678), + [anon_sym_break] = ACTIONS(1678), + [anon_sym_const] = ACTIONS(1678), + [anon_sym_continue] = ACTIONS(1678), + [anon_sym_default] = ACTIONS(1678), + [anon_sym_enum] = ACTIONS(1678), + [anon_sym_fn] = ACTIONS(1678), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_if] = ACTIONS(1678), + [anon_sym_impl] = ACTIONS(1678), + [anon_sym_let] = ACTIONS(1678), + [anon_sym_loop] = ACTIONS(1678), + [anon_sym_match] = ACTIONS(1678), + [anon_sym_mod] = ACTIONS(1678), + [anon_sym_pub] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1678), + [anon_sym_static] = ACTIONS(1678), + [anon_sym_struct] = ACTIONS(1678), + [anon_sym_trait] = ACTIONS(1678), + [anon_sym_type] = ACTIONS(1678), + [anon_sym_union] = ACTIONS(1678), + [anon_sym_unsafe] = ACTIONS(1678), + [anon_sym_use] = ACTIONS(1678), + [anon_sym_while] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(1676), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_LT] = ACTIONS(1676), + [anon_sym_COLON_COLON] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1676), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1676), + [anon_sym_move] = ACTIONS(1678), + [sym_integer_literal] = ACTIONS(1676), + [aux_sym_string_literal_token1] = ACTIONS(1676), + [sym_char_literal] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1678), + [sym_super] = ACTIONS(1678), + [sym_crate] = ACTIONS(1678), + [sym_metavariable] = ACTIONS(1676), + [sym_raw_string_literal] = ACTIONS(1676), + [sym_float_literal] = ACTIONS(1676), [sym_block_comment] = ACTIONS(3), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), - [anon_sym_SEMI] = ACTIONS(1686), - [anon_sym_macro_rules_BANG] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_RBRACE] = ACTIONS(1686), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_u8] = ACTIONS(1688), - [anon_sym_i8] = ACTIONS(1688), - [anon_sym_u16] = ACTIONS(1688), - [anon_sym_i16] = ACTIONS(1688), - [anon_sym_u32] = ACTIONS(1688), - [anon_sym_i32] = ACTIONS(1688), - [anon_sym_u64] = ACTIONS(1688), - [anon_sym_i64] = ACTIONS(1688), - [anon_sym_u128] = ACTIONS(1688), - [anon_sym_i128] = ACTIONS(1688), - [anon_sym_isize] = ACTIONS(1688), - [anon_sym_usize] = ACTIONS(1688), - [anon_sym_f32] = ACTIONS(1688), - [anon_sym_f64] = ACTIONS(1688), - [anon_sym_bool] = ACTIONS(1688), - [anon_sym_str] = ACTIONS(1688), - [anon_sym_char] = ACTIONS(1688), - [anon_sym_SQUOTE] = ACTIONS(1688), - [anon_sym_async] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_const] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1688), - [anon_sym_enum] = ACTIONS(1688), - [anon_sym_fn] = ACTIONS(1688), - [anon_sym_for] = ACTIONS(1688), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_impl] = ACTIONS(1688), - [anon_sym_let] = ACTIONS(1688), - [anon_sym_loop] = ACTIONS(1688), - [anon_sym_match] = ACTIONS(1688), - [anon_sym_mod] = ACTIONS(1688), - [anon_sym_pub] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_struct] = ACTIONS(1688), - [anon_sym_trait] = ACTIONS(1688), - [anon_sym_type] = ACTIONS(1688), - [anon_sym_union] = ACTIONS(1688), - [anon_sym_unsafe] = ACTIONS(1688), - [anon_sym_use] = ACTIONS(1688), - [anon_sym_while] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_LT] = ACTIONS(1686), - [anon_sym_COLON_COLON] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1686), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_PIPE] = ACTIONS(1686), - [anon_sym_move] = ACTIONS(1688), - [sym_integer_literal] = ACTIONS(1686), - [aux_sym_string_literal_token1] = ACTIONS(1686), - [sym_char_literal] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), + [ts_builtin_sym_end] = ACTIONS(1680), + [sym_identifier] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_macro_rules_BANG] = ACTIONS(1680), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_STAR] = ACTIONS(1680), + [anon_sym_u8] = ACTIONS(1682), + [anon_sym_i8] = ACTIONS(1682), + [anon_sym_u16] = ACTIONS(1682), + [anon_sym_i16] = ACTIONS(1682), + [anon_sym_u32] = ACTIONS(1682), + [anon_sym_i32] = ACTIONS(1682), + [anon_sym_u64] = ACTIONS(1682), + [anon_sym_i64] = ACTIONS(1682), + [anon_sym_u128] = ACTIONS(1682), + [anon_sym_i128] = ACTIONS(1682), + [anon_sym_isize] = ACTIONS(1682), + [anon_sym_usize] = ACTIONS(1682), + [anon_sym_f32] = ACTIONS(1682), + [anon_sym_f64] = ACTIONS(1682), + [anon_sym_bool] = ACTIONS(1682), + [anon_sym_str] = ACTIONS(1682), + [anon_sym_char] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1682), + [anon_sym_async] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_default] = ACTIONS(1682), + [anon_sym_enum] = ACTIONS(1682), + [anon_sym_fn] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_impl] = ACTIONS(1682), + [anon_sym_let] = ACTIONS(1682), + [anon_sym_loop] = ACTIONS(1682), + [anon_sym_match] = ACTIONS(1682), + [anon_sym_mod] = ACTIONS(1682), + [anon_sym_pub] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_static] = ACTIONS(1682), + [anon_sym_struct] = ACTIONS(1682), + [anon_sym_trait] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_union] = ACTIONS(1682), + [anon_sym_unsafe] = ACTIONS(1682), + [anon_sym_use] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_POUND] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_extern] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(1680), + [anon_sym_COLON_COLON] = ACTIONS(1680), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_DOT_DOT] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_move] = ACTIONS(1682), + [sym_integer_literal] = ACTIONS(1680), + [aux_sym_string_literal_token1] = ACTIONS(1680), + [sym_char_literal] = ACTIONS(1680), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1688), - [sym_super] = ACTIONS(1688), - [sym_crate] = ACTIONS(1688), - [sym_metavariable] = ACTIONS(1686), - [sym_raw_string_literal] = ACTIONS(1686), - [sym_float_literal] = ACTIONS(1686), + [sym_self] = ACTIONS(1682), + [sym_super] = ACTIONS(1682), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1680), + [sym_raw_string_literal] = ACTIONS(1680), + [sym_float_literal] = ACTIONS(1680), [sym_block_comment] = ACTIONS(3), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_macro_rules_BANG] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_u8] = ACTIONS(1692), - [anon_sym_i8] = ACTIONS(1692), - [anon_sym_u16] = ACTIONS(1692), - [anon_sym_i16] = ACTIONS(1692), - [anon_sym_u32] = ACTIONS(1692), - [anon_sym_i32] = ACTIONS(1692), - [anon_sym_u64] = ACTIONS(1692), - [anon_sym_i64] = ACTIONS(1692), - [anon_sym_u128] = ACTIONS(1692), - [anon_sym_i128] = ACTIONS(1692), - [anon_sym_isize] = ACTIONS(1692), - [anon_sym_usize] = ACTIONS(1692), - [anon_sym_f32] = ACTIONS(1692), - [anon_sym_f64] = ACTIONS(1692), - [anon_sym_bool] = ACTIONS(1692), - [anon_sym_str] = ACTIONS(1692), - [anon_sym_char] = ACTIONS(1692), - [anon_sym_SQUOTE] = ACTIONS(1692), - [anon_sym_async] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_enum] = ACTIONS(1692), - [anon_sym_fn] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_impl] = ACTIONS(1692), - [anon_sym_let] = ACTIONS(1692), - [anon_sym_loop] = ACTIONS(1692), - [anon_sym_match] = ACTIONS(1692), - [anon_sym_mod] = ACTIONS(1692), - [anon_sym_pub] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_struct] = ACTIONS(1692), - [anon_sym_trait] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1692), - [anon_sym_union] = ACTIONS(1692), - [anon_sym_unsafe] = ACTIONS(1692), - [anon_sym_use] = ACTIONS(1692), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_LT] = ACTIONS(1690), - [anon_sym_COLON_COLON] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_DOT_DOT] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_move] = ACTIONS(1692), - [sym_integer_literal] = ACTIONS(1690), - [aux_sym_string_literal_token1] = ACTIONS(1690), - [sym_char_literal] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1684), + [sym_identifier] = ACTIONS(1686), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_macro_rules_BANG] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_u8] = ACTIONS(1686), + [anon_sym_i8] = ACTIONS(1686), + [anon_sym_u16] = ACTIONS(1686), + [anon_sym_i16] = ACTIONS(1686), + [anon_sym_u32] = ACTIONS(1686), + [anon_sym_i32] = ACTIONS(1686), + [anon_sym_u64] = ACTIONS(1686), + [anon_sym_i64] = ACTIONS(1686), + [anon_sym_u128] = ACTIONS(1686), + [anon_sym_i128] = ACTIONS(1686), + [anon_sym_isize] = ACTIONS(1686), + [anon_sym_usize] = ACTIONS(1686), + [anon_sym_f32] = ACTIONS(1686), + [anon_sym_f64] = ACTIONS(1686), + [anon_sym_bool] = ACTIONS(1686), + [anon_sym_str] = ACTIONS(1686), + [anon_sym_char] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1686), + [anon_sym_async] = ACTIONS(1686), + [anon_sym_break] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1686), + [anon_sym_continue] = ACTIONS(1686), + [anon_sym_default] = ACTIONS(1686), + [anon_sym_enum] = ACTIONS(1686), + [anon_sym_fn] = ACTIONS(1686), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_if] = ACTIONS(1686), + [anon_sym_impl] = ACTIONS(1686), + [anon_sym_let] = ACTIONS(1686), + [anon_sym_loop] = ACTIONS(1686), + [anon_sym_match] = ACTIONS(1686), + [anon_sym_mod] = ACTIONS(1686), + [anon_sym_pub] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1686), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_struct] = ACTIONS(1686), + [anon_sym_trait] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1686), + [anon_sym_union] = ACTIONS(1686), + [anon_sym_unsafe] = ACTIONS(1686), + [anon_sym_use] = ACTIONS(1686), + [anon_sym_while] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1684), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1684), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_AMP] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PIPE] = ACTIONS(1684), + [anon_sym_move] = ACTIONS(1686), + [sym_integer_literal] = ACTIONS(1684), + [aux_sym_string_literal_token1] = ACTIONS(1684), + [sym_char_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1686), + [anon_sym_false] = ACTIONS(1686), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1692), - [sym_super] = ACTIONS(1692), - [sym_crate] = ACTIONS(1692), - [sym_metavariable] = ACTIONS(1690), - [sym_raw_string_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), + [sym_self] = ACTIONS(1686), + [sym_super] = ACTIONS(1686), + [sym_crate] = ACTIONS(1686), + [sym_metavariable] = ACTIONS(1684), + [sym_raw_string_literal] = ACTIONS(1684), + [sym_float_literal] = ACTIONS(1684), [sym_block_comment] = ACTIONS(3), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1694), - [anon_sym_macro_rules_BANG] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_RBRACE] = ACTIONS(1694), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_u8] = ACTIONS(1696), - [anon_sym_i8] = ACTIONS(1696), - [anon_sym_u16] = ACTIONS(1696), - [anon_sym_i16] = ACTIONS(1696), - [anon_sym_u32] = ACTIONS(1696), - [anon_sym_i32] = ACTIONS(1696), - [anon_sym_u64] = ACTIONS(1696), - [anon_sym_i64] = ACTIONS(1696), - [anon_sym_u128] = ACTIONS(1696), - [anon_sym_i128] = ACTIONS(1696), - [anon_sym_isize] = ACTIONS(1696), - [anon_sym_usize] = ACTIONS(1696), - [anon_sym_f32] = ACTIONS(1696), - [anon_sym_f64] = ACTIONS(1696), - [anon_sym_bool] = ACTIONS(1696), - [anon_sym_str] = ACTIONS(1696), - [anon_sym_char] = ACTIONS(1696), - [anon_sym_SQUOTE] = ACTIONS(1696), - [anon_sym_async] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_enum] = ACTIONS(1696), - [anon_sym_fn] = ACTIONS(1696), - [anon_sym_for] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_impl] = ACTIONS(1696), - [anon_sym_let] = ACTIONS(1696), - [anon_sym_loop] = ACTIONS(1696), - [anon_sym_match] = ACTIONS(1696), - [anon_sym_mod] = ACTIONS(1696), - [anon_sym_pub] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_struct] = ACTIONS(1696), - [anon_sym_trait] = ACTIONS(1696), - [anon_sym_type] = ACTIONS(1696), - [anon_sym_union] = ACTIONS(1696), - [anon_sym_unsafe] = ACTIONS(1696), - [anon_sym_use] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_COLON_COLON] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1694), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_move] = ACTIONS(1696), - [sym_integer_literal] = ACTIONS(1694), - [aux_sym_string_literal_token1] = ACTIONS(1694), - [sym_char_literal] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), + [ts_builtin_sym_end] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1688), + [anon_sym_macro_rules_BANG] = ACTIONS(1688), + [anon_sym_LPAREN] = ACTIONS(1688), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_RBRACE] = ACTIONS(1688), + [anon_sym_LBRACK] = ACTIONS(1688), + [anon_sym_STAR] = ACTIONS(1688), + [anon_sym_u8] = ACTIONS(1690), + [anon_sym_i8] = ACTIONS(1690), + [anon_sym_u16] = ACTIONS(1690), + [anon_sym_i16] = ACTIONS(1690), + [anon_sym_u32] = ACTIONS(1690), + [anon_sym_i32] = ACTIONS(1690), + [anon_sym_u64] = ACTIONS(1690), + [anon_sym_i64] = ACTIONS(1690), + [anon_sym_u128] = ACTIONS(1690), + [anon_sym_i128] = ACTIONS(1690), + [anon_sym_isize] = ACTIONS(1690), + [anon_sym_usize] = ACTIONS(1690), + [anon_sym_f32] = ACTIONS(1690), + [anon_sym_f64] = ACTIONS(1690), + [anon_sym_bool] = ACTIONS(1690), + [anon_sym_str] = ACTIONS(1690), + [anon_sym_char] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1690), + [anon_sym_async] = ACTIONS(1690), + [anon_sym_break] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1690), + [anon_sym_continue] = ACTIONS(1690), + [anon_sym_default] = ACTIONS(1690), + [anon_sym_enum] = ACTIONS(1690), + [anon_sym_fn] = ACTIONS(1690), + [anon_sym_for] = ACTIONS(1690), + [anon_sym_if] = ACTIONS(1690), + [anon_sym_impl] = ACTIONS(1690), + [anon_sym_let] = ACTIONS(1690), + [anon_sym_loop] = ACTIONS(1690), + [anon_sym_match] = ACTIONS(1690), + [anon_sym_mod] = ACTIONS(1690), + [anon_sym_pub] = ACTIONS(1690), + [anon_sym_return] = ACTIONS(1690), + [anon_sym_static] = ACTIONS(1690), + [anon_sym_struct] = ACTIONS(1690), + [anon_sym_trait] = ACTIONS(1690), + [anon_sym_type] = ACTIONS(1690), + [anon_sym_union] = ACTIONS(1690), + [anon_sym_unsafe] = ACTIONS(1690), + [anon_sym_use] = ACTIONS(1690), + [anon_sym_while] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1688), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1688), + [anon_sym_AMP] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1688), + [anon_sym_PIPE] = ACTIONS(1688), + [anon_sym_move] = ACTIONS(1690), + [sym_integer_literal] = ACTIONS(1688), + [aux_sym_string_literal_token1] = ACTIONS(1688), + [sym_char_literal] = ACTIONS(1688), + [anon_sym_true] = ACTIONS(1690), + [anon_sym_false] = ACTIONS(1690), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1696), - [sym_super] = ACTIONS(1696), - [sym_crate] = ACTIONS(1696), - [sym_metavariable] = ACTIONS(1694), - [sym_raw_string_literal] = ACTIONS(1694), - [sym_float_literal] = ACTIONS(1694), + [sym_self] = ACTIONS(1690), + [sym_super] = ACTIONS(1690), + [sym_crate] = ACTIONS(1690), + [sym_metavariable] = ACTIONS(1688), + [sym_raw_string_literal] = ACTIONS(1688), + [sym_float_literal] = ACTIONS(1688), [sym_block_comment] = ACTIONS(3), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1698), - [anon_sym_macro_rules_BANG] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_RBRACE] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_u8] = ACTIONS(1700), - [anon_sym_i8] = ACTIONS(1700), - [anon_sym_u16] = ACTIONS(1700), - [anon_sym_i16] = ACTIONS(1700), - [anon_sym_u32] = ACTIONS(1700), - [anon_sym_i32] = ACTIONS(1700), - [anon_sym_u64] = ACTIONS(1700), - [anon_sym_i64] = ACTIONS(1700), - [anon_sym_u128] = ACTIONS(1700), - [anon_sym_i128] = ACTIONS(1700), - [anon_sym_isize] = ACTIONS(1700), - [anon_sym_usize] = ACTIONS(1700), - [anon_sym_f32] = ACTIONS(1700), - [anon_sym_f64] = ACTIONS(1700), - [anon_sym_bool] = ACTIONS(1700), - [anon_sym_str] = ACTIONS(1700), - [anon_sym_char] = ACTIONS(1700), - [anon_sym_SQUOTE] = ACTIONS(1700), - [anon_sym_async] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_enum] = ACTIONS(1700), - [anon_sym_fn] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_impl] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_mod] = ACTIONS(1700), - [anon_sym_pub] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1700), - [anon_sym_trait] = ACTIONS(1700), - [anon_sym_type] = ACTIONS(1700), - [anon_sym_union] = ACTIONS(1700), - [anon_sym_unsafe] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1698), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1698), - [anon_sym_DOT_DOT] = ACTIONS(1698), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PIPE] = ACTIONS(1698), - [anon_sym_move] = ACTIONS(1700), - [sym_integer_literal] = ACTIONS(1698), - [aux_sym_string_literal_token1] = ACTIONS(1698), - [sym_char_literal] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), + [ts_builtin_sym_end] = ACTIONS(1692), + [sym_identifier] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_macro_rules_BANG] = ACTIONS(1692), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_STAR] = ACTIONS(1692), + [anon_sym_u8] = ACTIONS(1694), + [anon_sym_i8] = ACTIONS(1694), + [anon_sym_u16] = ACTIONS(1694), + [anon_sym_i16] = ACTIONS(1694), + [anon_sym_u32] = ACTIONS(1694), + [anon_sym_i32] = ACTIONS(1694), + [anon_sym_u64] = ACTIONS(1694), + [anon_sym_i64] = ACTIONS(1694), + [anon_sym_u128] = ACTIONS(1694), + [anon_sym_i128] = ACTIONS(1694), + [anon_sym_isize] = ACTIONS(1694), + [anon_sym_usize] = ACTIONS(1694), + [anon_sym_f32] = ACTIONS(1694), + [anon_sym_f64] = ACTIONS(1694), + [anon_sym_bool] = ACTIONS(1694), + [anon_sym_str] = ACTIONS(1694), + [anon_sym_char] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1694), + [anon_sym_async] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_enum] = ACTIONS(1694), + [anon_sym_fn] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_impl] = ACTIONS(1694), + [anon_sym_let] = ACTIONS(1694), + [anon_sym_loop] = ACTIONS(1694), + [anon_sym_match] = ACTIONS(1694), + [anon_sym_mod] = ACTIONS(1694), + [anon_sym_pub] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_static] = ACTIONS(1694), + [anon_sym_struct] = ACTIONS(1694), + [anon_sym_trait] = ACTIONS(1694), + [anon_sym_type] = ACTIONS(1694), + [anon_sym_union] = ACTIONS(1694), + [anon_sym_unsafe] = ACTIONS(1694), + [anon_sym_use] = ACTIONS(1694), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1692), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_AMP] = ACTIONS(1692), + [anon_sym_DOT_DOT] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_move] = ACTIONS(1694), + [sym_integer_literal] = ACTIONS(1692), + [aux_sym_string_literal_token1] = ACTIONS(1692), + [sym_char_literal] = ACTIONS(1692), + [anon_sym_true] = ACTIONS(1694), + [anon_sym_false] = ACTIONS(1694), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1700), - [sym_super] = ACTIONS(1700), - [sym_crate] = ACTIONS(1700), - [sym_metavariable] = ACTIONS(1698), - [sym_raw_string_literal] = ACTIONS(1698), - [sym_float_literal] = ACTIONS(1698), + [sym_self] = ACTIONS(1694), + [sym_super] = ACTIONS(1694), + [sym_crate] = ACTIONS(1694), + [sym_metavariable] = ACTIONS(1692), + [sym_raw_string_literal] = ACTIONS(1692), + [sym_float_literal] = ACTIONS(1692), [sym_block_comment] = ACTIONS(3), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_macro_rules_BANG] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_RBRACE] = ACTIONS(1702), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_u8] = ACTIONS(1704), - [anon_sym_i8] = ACTIONS(1704), - [anon_sym_u16] = ACTIONS(1704), - [anon_sym_i16] = ACTIONS(1704), - [anon_sym_u32] = ACTIONS(1704), - [anon_sym_i32] = ACTIONS(1704), - [anon_sym_u64] = ACTIONS(1704), - [anon_sym_i64] = ACTIONS(1704), - [anon_sym_u128] = ACTIONS(1704), - [anon_sym_i128] = ACTIONS(1704), - [anon_sym_isize] = ACTIONS(1704), - [anon_sym_usize] = ACTIONS(1704), - [anon_sym_f32] = ACTIONS(1704), - [anon_sym_f64] = ACTIONS(1704), - [anon_sym_bool] = ACTIONS(1704), - [anon_sym_str] = ACTIONS(1704), - [anon_sym_char] = ACTIONS(1704), - [anon_sym_SQUOTE] = ACTIONS(1704), - [anon_sym_async] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_const] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_enum] = ACTIONS(1704), - [anon_sym_fn] = ACTIONS(1704), - [anon_sym_for] = ACTIONS(1704), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_impl] = ACTIONS(1704), - [anon_sym_let] = ACTIONS(1704), - [anon_sym_loop] = ACTIONS(1704), - [anon_sym_match] = ACTIONS(1704), - [anon_sym_mod] = ACTIONS(1704), - [anon_sym_pub] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_struct] = ACTIONS(1704), - [anon_sym_trait] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_unsafe] = ACTIONS(1704), - [anon_sym_use] = ACTIONS(1704), - [anon_sym_while] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1702), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_LT] = ACTIONS(1702), - [anon_sym_COLON_COLON] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1702), - [anon_sym_DASH] = ACTIONS(1702), - [anon_sym_PIPE] = ACTIONS(1702), - [anon_sym_move] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1702), - [aux_sym_string_literal_token1] = ACTIONS(1702), - [sym_char_literal] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1696), + [sym_identifier] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_macro_rules_BANG] = ACTIONS(1696), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_STAR] = ACTIONS(1696), + [anon_sym_u8] = ACTIONS(1698), + [anon_sym_i8] = ACTIONS(1698), + [anon_sym_u16] = ACTIONS(1698), + [anon_sym_i16] = ACTIONS(1698), + [anon_sym_u32] = ACTIONS(1698), + [anon_sym_i32] = ACTIONS(1698), + [anon_sym_u64] = ACTIONS(1698), + [anon_sym_i64] = ACTIONS(1698), + [anon_sym_u128] = ACTIONS(1698), + [anon_sym_i128] = ACTIONS(1698), + [anon_sym_isize] = ACTIONS(1698), + [anon_sym_usize] = ACTIONS(1698), + [anon_sym_f32] = ACTIONS(1698), + [anon_sym_f64] = ACTIONS(1698), + [anon_sym_bool] = ACTIONS(1698), + [anon_sym_str] = ACTIONS(1698), + [anon_sym_char] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1698), + [anon_sym_async] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_continue] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_enum] = ACTIONS(1698), + [anon_sym_fn] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_impl] = ACTIONS(1698), + [anon_sym_let] = ACTIONS(1698), + [anon_sym_loop] = ACTIONS(1698), + [anon_sym_match] = ACTIONS(1698), + [anon_sym_mod] = ACTIONS(1698), + [anon_sym_pub] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_static] = ACTIONS(1698), + [anon_sym_struct] = ACTIONS(1698), + [anon_sym_trait] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(1698), + [anon_sym_union] = ACTIONS(1698), + [anon_sym_unsafe] = ACTIONS(1698), + [anon_sym_use] = ACTIONS(1698), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1696), + [anon_sym_COLON_COLON] = ACTIONS(1696), + [anon_sym_AMP] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_move] = ACTIONS(1698), + [sym_integer_literal] = ACTIONS(1696), + [aux_sym_string_literal_token1] = ACTIONS(1696), + [sym_char_literal] = ACTIONS(1696), + [anon_sym_true] = ACTIONS(1698), + [anon_sym_false] = ACTIONS(1698), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1704), - [sym_super] = ACTIONS(1704), - [sym_crate] = ACTIONS(1704), - [sym_metavariable] = ACTIONS(1702), - [sym_raw_string_literal] = ACTIONS(1702), - [sym_float_literal] = ACTIONS(1702), + [sym_self] = ACTIONS(1698), + [sym_super] = ACTIONS(1698), + [sym_crate] = ACTIONS(1698), + [sym_metavariable] = ACTIONS(1696), + [sym_raw_string_literal] = ACTIONS(1696), + [sym_float_literal] = ACTIONS(1696), [sym_block_comment] = ACTIONS(3), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_macro_rules_BANG] = ACTIONS(1706), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_u8] = ACTIONS(1708), - [anon_sym_i8] = ACTIONS(1708), - [anon_sym_u16] = ACTIONS(1708), - [anon_sym_i16] = ACTIONS(1708), - [anon_sym_u32] = ACTIONS(1708), - [anon_sym_i32] = ACTIONS(1708), - [anon_sym_u64] = ACTIONS(1708), - [anon_sym_i64] = ACTIONS(1708), - [anon_sym_u128] = ACTIONS(1708), - [anon_sym_i128] = ACTIONS(1708), - [anon_sym_isize] = ACTIONS(1708), - [anon_sym_usize] = ACTIONS(1708), - [anon_sym_f32] = ACTIONS(1708), - [anon_sym_f64] = ACTIONS(1708), - [anon_sym_bool] = ACTIONS(1708), - [anon_sym_str] = ACTIONS(1708), - [anon_sym_char] = ACTIONS(1708), - [anon_sym_SQUOTE] = ACTIONS(1708), - [anon_sym_async] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_enum] = ACTIONS(1708), - [anon_sym_fn] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_impl] = ACTIONS(1708), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_loop] = ACTIONS(1708), - [anon_sym_match] = ACTIONS(1708), - [anon_sym_mod] = ACTIONS(1708), - [anon_sym_pub] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_struct] = ACTIONS(1708), - [anon_sym_trait] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_union] = ACTIONS(1708), - [anon_sym_unsafe] = ACTIONS(1708), - [anon_sym_use] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_LT] = ACTIONS(1706), - [anon_sym_COLON_COLON] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1706), - [anon_sym_DOT_DOT] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_move] = ACTIONS(1708), - [sym_integer_literal] = ACTIONS(1706), - [aux_sym_string_literal_token1] = ACTIONS(1706), - [sym_char_literal] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), + [ts_builtin_sym_end] = ACTIONS(1700), + [sym_identifier] = ACTIONS(1702), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_macro_rules_BANG] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_STAR] = ACTIONS(1700), + [anon_sym_u8] = ACTIONS(1702), + [anon_sym_i8] = ACTIONS(1702), + [anon_sym_u16] = ACTIONS(1702), + [anon_sym_i16] = ACTIONS(1702), + [anon_sym_u32] = ACTIONS(1702), + [anon_sym_i32] = ACTIONS(1702), + [anon_sym_u64] = ACTIONS(1702), + [anon_sym_i64] = ACTIONS(1702), + [anon_sym_u128] = ACTIONS(1702), + [anon_sym_i128] = ACTIONS(1702), + [anon_sym_isize] = ACTIONS(1702), + [anon_sym_usize] = ACTIONS(1702), + [anon_sym_f32] = ACTIONS(1702), + [anon_sym_f64] = ACTIONS(1702), + [anon_sym_bool] = ACTIONS(1702), + [anon_sym_str] = ACTIONS(1702), + [anon_sym_char] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_async] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_continue] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_enum] = ACTIONS(1702), + [anon_sym_fn] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_impl] = ACTIONS(1702), + [anon_sym_let] = ACTIONS(1702), + [anon_sym_loop] = ACTIONS(1702), + [anon_sym_match] = ACTIONS(1702), + [anon_sym_mod] = ACTIONS(1702), + [anon_sym_pub] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_static] = ACTIONS(1702), + [anon_sym_struct] = ACTIONS(1702), + [anon_sym_trait] = ACTIONS(1702), + [anon_sym_type] = ACTIONS(1702), + [anon_sym_union] = ACTIONS(1702), + [anon_sym_unsafe] = ACTIONS(1702), + [anon_sym_use] = ACTIONS(1702), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1700), + [anon_sym_COLON_COLON] = ACTIONS(1700), + [anon_sym_AMP] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_move] = ACTIONS(1702), + [sym_integer_literal] = ACTIONS(1700), + [aux_sym_string_literal_token1] = ACTIONS(1700), + [sym_char_literal] = ACTIONS(1700), + [anon_sym_true] = ACTIONS(1702), + [anon_sym_false] = ACTIONS(1702), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1708), - [sym_super] = ACTIONS(1708), - [sym_crate] = ACTIONS(1708), - [sym_metavariable] = ACTIONS(1706), - [sym_raw_string_literal] = ACTIONS(1706), - [sym_float_literal] = ACTIONS(1706), + [sym_self] = ACTIONS(1702), + [sym_super] = ACTIONS(1702), + [sym_crate] = ACTIONS(1702), + [sym_metavariable] = ACTIONS(1700), + [sym_raw_string_literal] = ACTIONS(1700), + [sym_float_literal] = ACTIONS(1700), [sym_block_comment] = ACTIONS(3), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1712), - [anon_sym_SEMI] = ACTIONS(1710), - [anon_sym_macro_rules_BANG] = ACTIONS(1710), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_RBRACE] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_u8] = ACTIONS(1712), - [anon_sym_i8] = ACTIONS(1712), - [anon_sym_u16] = ACTIONS(1712), - [anon_sym_i16] = ACTIONS(1712), - [anon_sym_u32] = ACTIONS(1712), - [anon_sym_i32] = ACTIONS(1712), - [anon_sym_u64] = ACTIONS(1712), - [anon_sym_i64] = ACTIONS(1712), - [anon_sym_u128] = ACTIONS(1712), - [anon_sym_i128] = ACTIONS(1712), - [anon_sym_isize] = ACTIONS(1712), - [anon_sym_usize] = ACTIONS(1712), - [anon_sym_f32] = ACTIONS(1712), - [anon_sym_f64] = ACTIONS(1712), - [anon_sym_bool] = ACTIONS(1712), - [anon_sym_str] = ACTIONS(1712), - [anon_sym_char] = ACTIONS(1712), - [anon_sym_SQUOTE] = ACTIONS(1712), - [anon_sym_async] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_const] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_enum] = ACTIONS(1712), - [anon_sym_fn] = ACTIONS(1712), - [anon_sym_for] = ACTIONS(1712), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_impl] = ACTIONS(1712), - [anon_sym_let] = ACTIONS(1712), - [anon_sym_loop] = ACTIONS(1712), - [anon_sym_match] = ACTIONS(1712), - [anon_sym_mod] = ACTIONS(1712), - [anon_sym_pub] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_struct] = ACTIONS(1712), - [anon_sym_trait] = ACTIONS(1712), - [anon_sym_type] = ACTIONS(1712), - [anon_sym_union] = ACTIONS(1712), - [anon_sym_unsafe] = ACTIONS(1712), - [anon_sym_use] = ACTIONS(1712), - [anon_sym_while] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_LT] = ACTIONS(1710), - [anon_sym_COLON_COLON] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1710), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_PIPE] = ACTIONS(1710), - [anon_sym_move] = ACTIONS(1712), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1710), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), + [ts_builtin_sym_end] = ACTIONS(1704), + [sym_identifier] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_macro_rules_BANG] = ACTIONS(1704), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_STAR] = ACTIONS(1704), + [anon_sym_u8] = ACTIONS(1706), + [anon_sym_i8] = ACTIONS(1706), + [anon_sym_u16] = ACTIONS(1706), + [anon_sym_i16] = ACTIONS(1706), + [anon_sym_u32] = ACTIONS(1706), + [anon_sym_i32] = ACTIONS(1706), + [anon_sym_u64] = ACTIONS(1706), + [anon_sym_i64] = ACTIONS(1706), + [anon_sym_u128] = ACTIONS(1706), + [anon_sym_i128] = ACTIONS(1706), + [anon_sym_isize] = ACTIONS(1706), + [anon_sym_usize] = ACTIONS(1706), + [anon_sym_f32] = ACTIONS(1706), + [anon_sym_f64] = ACTIONS(1706), + [anon_sym_bool] = ACTIONS(1706), + [anon_sym_str] = ACTIONS(1706), + [anon_sym_char] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1706), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_continue] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_enum] = ACTIONS(1706), + [anon_sym_fn] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_impl] = ACTIONS(1706), + [anon_sym_let] = ACTIONS(1706), + [anon_sym_loop] = ACTIONS(1706), + [anon_sym_match] = ACTIONS(1706), + [anon_sym_mod] = ACTIONS(1706), + [anon_sym_pub] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_struct] = ACTIONS(1706), + [anon_sym_trait] = ACTIONS(1706), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_union] = ACTIONS(1706), + [anon_sym_unsafe] = ACTIONS(1706), + [anon_sym_use] = ACTIONS(1706), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1704), + [anon_sym_COLON_COLON] = ACTIONS(1704), + [anon_sym_AMP] = ACTIONS(1704), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_move] = ACTIONS(1706), + [sym_integer_literal] = ACTIONS(1704), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1704), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1712), - [sym_super] = ACTIONS(1712), - [sym_crate] = ACTIONS(1712), - [sym_metavariable] = ACTIONS(1710), - [sym_raw_string_literal] = ACTIONS(1710), - [sym_float_literal] = ACTIONS(1710), + [sym_self] = ACTIONS(1706), + [sym_super] = ACTIONS(1706), + [sym_crate] = ACTIONS(1706), + [sym_metavariable] = ACTIONS(1704), + [sym_raw_string_literal] = ACTIONS(1704), + [sym_float_literal] = ACTIONS(1704), [sym_block_comment] = ACTIONS(3), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1714), - [anon_sym_macro_rules_BANG] = ACTIONS(1714), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_RBRACE] = ACTIONS(1714), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_u8] = ACTIONS(1716), - [anon_sym_i8] = ACTIONS(1716), - [anon_sym_u16] = ACTIONS(1716), - [anon_sym_i16] = ACTIONS(1716), - [anon_sym_u32] = ACTIONS(1716), - [anon_sym_i32] = ACTIONS(1716), - [anon_sym_u64] = ACTIONS(1716), - [anon_sym_i64] = ACTIONS(1716), - [anon_sym_u128] = ACTIONS(1716), - [anon_sym_i128] = ACTIONS(1716), - [anon_sym_isize] = ACTIONS(1716), - [anon_sym_usize] = ACTIONS(1716), - [anon_sym_f32] = ACTIONS(1716), - [anon_sym_f64] = ACTIONS(1716), - [anon_sym_bool] = ACTIONS(1716), - [anon_sym_str] = ACTIONS(1716), - [anon_sym_char] = ACTIONS(1716), - [anon_sym_SQUOTE] = ACTIONS(1716), - [anon_sym_async] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_const] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1716), - [anon_sym_enum] = ACTIONS(1716), - [anon_sym_fn] = ACTIONS(1716), - [anon_sym_for] = ACTIONS(1716), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_impl] = ACTIONS(1716), - [anon_sym_let] = ACTIONS(1716), - [anon_sym_loop] = ACTIONS(1716), - [anon_sym_match] = ACTIONS(1716), - [anon_sym_mod] = ACTIONS(1716), - [anon_sym_pub] = ACTIONS(1716), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_struct] = ACTIONS(1716), - [anon_sym_trait] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1716), - [anon_sym_union] = ACTIONS(1716), - [anon_sym_unsafe] = ACTIONS(1716), - [anon_sym_use] = ACTIONS(1716), - [anon_sym_while] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1714), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_LT] = ACTIONS(1714), - [anon_sym_COLON_COLON] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1714), - [anon_sym_DOT_DOT] = ACTIONS(1714), - [anon_sym_DASH] = ACTIONS(1714), - [anon_sym_PIPE] = ACTIONS(1714), - [anon_sym_move] = ACTIONS(1716), - [sym_integer_literal] = ACTIONS(1714), - [aux_sym_string_literal_token1] = ACTIONS(1714), - [sym_char_literal] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1708), + [sym_identifier] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1708), + [anon_sym_macro_rules_BANG] = ACTIONS(1708), + [anon_sym_LPAREN] = ACTIONS(1708), + [anon_sym_LBRACE] = ACTIONS(1708), + [anon_sym_RBRACE] = ACTIONS(1708), + [anon_sym_LBRACK] = ACTIONS(1708), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_u8] = ACTIONS(1710), + [anon_sym_i8] = ACTIONS(1710), + [anon_sym_u16] = ACTIONS(1710), + [anon_sym_i16] = ACTIONS(1710), + [anon_sym_u32] = ACTIONS(1710), + [anon_sym_i32] = ACTIONS(1710), + [anon_sym_u64] = ACTIONS(1710), + [anon_sym_i64] = ACTIONS(1710), + [anon_sym_u128] = ACTIONS(1710), + [anon_sym_i128] = ACTIONS(1710), + [anon_sym_isize] = ACTIONS(1710), + [anon_sym_usize] = ACTIONS(1710), + [anon_sym_f32] = ACTIONS(1710), + [anon_sym_f64] = ACTIONS(1710), + [anon_sym_bool] = ACTIONS(1710), + [anon_sym_str] = ACTIONS(1710), + [anon_sym_char] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1710), + [anon_sym_async] = ACTIONS(1710), + [anon_sym_break] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_continue] = ACTIONS(1710), + [anon_sym_default] = ACTIONS(1710), + [anon_sym_enum] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1710), + [anon_sym_for] = ACTIONS(1710), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_impl] = ACTIONS(1710), + [anon_sym_let] = ACTIONS(1710), + [anon_sym_loop] = ACTIONS(1710), + [anon_sym_match] = ACTIONS(1710), + [anon_sym_mod] = ACTIONS(1710), + [anon_sym_pub] = ACTIONS(1710), + [anon_sym_return] = ACTIONS(1710), + [anon_sym_static] = ACTIONS(1710), + [anon_sym_struct] = ACTIONS(1710), + [anon_sym_trait] = ACTIONS(1710), + [anon_sym_type] = ACTIONS(1710), + [anon_sym_union] = ACTIONS(1710), + [anon_sym_unsafe] = ACTIONS(1710), + [anon_sym_use] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1708), + [anon_sym_COLON_COLON] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1708), + [anon_sym_PIPE] = ACTIONS(1708), + [anon_sym_move] = ACTIONS(1710), + [sym_integer_literal] = ACTIONS(1708), + [aux_sym_string_literal_token1] = ACTIONS(1708), + [sym_char_literal] = ACTIONS(1708), + [anon_sym_true] = ACTIONS(1710), + [anon_sym_false] = ACTIONS(1710), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1714), - [sym_raw_string_literal] = ACTIONS(1714), - [sym_float_literal] = ACTIONS(1714), + [sym_self] = ACTIONS(1710), + [sym_super] = ACTIONS(1710), + [sym_crate] = ACTIONS(1710), + [sym_metavariable] = ACTIONS(1708), + [sym_raw_string_literal] = ACTIONS(1708), + [sym_float_literal] = ACTIONS(1708), [sym_block_comment] = ACTIONS(3), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1720), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_macro_rules_BANG] = ACTIONS(1718), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_RBRACE] = ACTIONS(1718), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_u8] = ACTIONS(1720), - [anon_sym_i8] = ACTIONS(1720), - [anon_sym_u16] = ACTIONS(1720), - [anon_sym_i16] = ACTIONS(1720), - [anon_sym_u32] = ACTIONS(1720), - [anon_sym_i32] = ACTIONS(1720), - [anon_sym_u64] = ACTIONS(1720), - [anon_sym_i64] = ACTIONS(1720), - [anon_sym_u128] = ACTIONS(1720), - [anon_sym_i128] = ACTIONS(1720), - [anon_sym_isize] = ACTIONS(1720), - [anon_sym_usize] = ACTIONS(1720), - [anon_sym_f32] = ACTIONS(1720), - [anon_sym_f64] = ACTIONS(1720), - [anon_sym_bool] = ACTIONS(1720), - [anon_sym_str] = ACTIONS(1720), - [anon_sym_char] = ACTIONS(1720), - [anon_sym_SQUOTE] = ACTIONS(1720), - [anon_sym_async] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_enum] = ACTIONS(1720), - [anon_sym_fn] = ACTIONS(1720), - [anon_sym_for] = ACTIONS(1720), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_impl] = ACTIONS(1720), - [anon_sym_let] = ACTIONS(1720), - [anon_sym_loop] = ACTIONS(1720), - [anon_sym_match] = ACTIONS(1720), - [anon_sym_mod] = ACTIONS(1720), - [anon_sym_pub] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_struct] = ACTIONS(1720), - [anon_sym_trait] = ACTIONS(1720), - [anon_sym_type] = ACTIONS(1720), - [anon_sym_union] = ACTIONS(1720), - [anon_sym_unsafe] = ACTIONS(1720), - [anon_sym_use] = ACTIONS(1720), - [anon_sym_while] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1718), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_LT] = ACTIONS(1718), - [anon_sym_COLON_COLON] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1718), - [anon_sym_DOT_DOT] = ACTIONS(1718), - [anon_sym_DASH] = ACTIONS(1718), - [anon_sym_PIPE] = ACTIONS(1718), - [anon_sym_move] = ACTIONS(1720), - [sym_integer_literal] = ACTIONS(1718), - [aux_sym_string_literal_token1] = ACTIONS(1718), - [sym_char_literal] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), + [ts_builtin_sym_end] = ACTIONS(1712), + [sym_identifier] = ACTIONS(1714), + [anon_sym_SEMI] = ACTIONS(1712), + [anon_sym_macro_rules_BANG] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1712), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_RBRACE] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1712), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_u8] = ACTIONS(1714), + [anon_sym_i8] = ACTIONS(1714), + [anon_sym_u16] = ACTIONS(1714), + [anon_sym_i16] = ACTIONS(1714), + [anon_sym_u32] = ACTIONS(1714), + [anon_sym_i32] = ACTIONS(1714), + [anon_sym_u64] = ACTIONS(1714), + [anon_sym_i64] = ACTIONS(1714), + [anon_sym_u128] = ACTIONS(1714), + [anon_sym_i128] = ACTIONS(1714), + [anon_sym_isize] = ACTIONS(1714), + [anon_sym_usize] = ACTIONS(1714), + [anon_sym_f32] = ACTIONS(1714), + [anon_sym_f64] = ACTIONS(1714), + [anon_sym_bool] = ACTIONS(1714), + [anon_sym_str] = ACTIONS(1714), + [anon_sym_char] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1714), + [anon_sym_break] = ACTIONS(1714), + [anon_sym_const] = ACTIONS(1714), + [anon_sym_continue] = ACTIONS(1714), + [anon_sym_default] = ACTIONS(1714), + [anon_sym_enum] = ACTIONS(1714), + [anon_sym_fn] = ACTIONS(1714), + [anon_sym_for] = ACTIONS(1714), + [anon_sym_if] = ACTIONS(1714), + [anon_sym_impl] = ACTIONS(1714), + [anon_sym_let] = ACTIONS(1714), + [anon_sym_loop] = ACTIONS(1714), + [anon_sym_match] = ACTIONS(1714), + [anon_sym_mod] = ACTIONS(1714), + [anon_sym_pub] = ACTIONS(1714), + [anon_sym_return] = ACTIONS(1714), + [anon_sym_static] = ACTIONS(1714), + [anon_sym_struct] = ACTIONS(1714), + [anon_sym_trait] = ACTIONS(1714), + [anon_sym_type] = ACTIONS(1714), + [anon_sym_union] = ACTIONS(1714), + [anon_sym_unsafe] = ACTIONS(1714), + [anon_sym_use] = ACTIONS(1714), + [anon_sym_while] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1712), + [anon_sym_BANG] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1712), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_AMP] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PIPE] = ACTIONS(1712), + [anon_sym_move] = ACTIONS(1714), + [sym_integer_literal] = ACTIONS(1712), + [aux_sym_string_literal_token1] = ACTIONS(1712), + [sym_char_literal] = ACTIONS(1712), + [anon_sym_true] = ACTIONS(1714), + [anon_sym_false] = ACTIONS(1714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1720), - [sym_super] = ACTIONS(1720), - [sym_crate] = ACTIONS(1720), - [sym_metavariable] = ACTIONS(1718), - [sym_raw_string_literal] = ACTIONS(1718), - [sym_float_literal] = ACTIONS(1718), + [sym_self] = ACTIONS(1714), + [sym_super] = ACTIONS(1714), + [sym_crate] = ACTIONS(1714), + [sym_metavariable] = ACTIONS(1712), + [sym_raw_string_literal] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1712), [sym_block_comment] = ACTIONS(3), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1724), - [anon_sym_SEMI] = ACTIONS(1722), - [anon_sym_macro_rules_BANG] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_u8] = ACTIONS(1724), - [anon_sym_i8] = ACTIONS(1724), - [anon_sym_u16] = ACTIONS(1724), - [anon_sym_i16] = ACTIONS(1724), - [anon_sym_u32] = ACTIONS(1724), - [anon_sym_i32] = ACTIONS(1724), - [anon_sym_u64] = ACTIONS(1724), - [anon_sym_i64] = ACTIONS(1724), - [anon_sym_u128] = ACTIONS(1724), - [anon_sym_i128] = ACTIONS(1724), - [anon_sym_isize] = ACTIONS(1724), - [anon_sym_usize] = ACTIONS(1724), - [anon_sym_f32] = ACTIONS(1724), - [anon_sym_f64] = ACTIONS(1724), - [anon_sym_bool] = ACTIONS(1724), - [anon_sym_str] = ACTIONS(1724), - [anon_sym_char] = ACTIONS(1724), - [anon_sym_SQUOTE] = ACTIONS(1724), - [anon_sym_async] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_const] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1724), - [anon_sym_enum] = ACTIONS(1724), - [anon_sym_fn] = ACTIONS(1724), - [anon_sym_for] = ACTIONS(1724), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_impl] = ACTIONS(1724), - [anon_sym_let] = ACTIONS(1724), - [anon_sym_loop] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1724), - [anon_sym_mod] = ACTIONS(1724), - [anon_sym_pub] = ACTIONS(1724), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_struct] = ACTIONS(1724), - [anon_sym_trait] = ACTIONS(1724), - [anon_sym_type] = ACTIONS(1724), - [anon_sym_union] = ACTIONS(1724), - [anon_sym_unsafe] = ACTIONS(1724), - [anon_sym_use] = ACTIONS(1724), - [anon_sym_while] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_LT] = ACTIONS(1722), - [anon_sym_COLON_COLON] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1722), - [anon_sym_DOT_DOT] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PIPE] = ACTIONS(1722), - [anon_sym_move] = ACTIONS(1724), - [sym_integer_literal] = ACTIONS(1722), - [aux_sym_string_literal_token1] = ACTIONS(1722), - [sym_char_literal] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), + [ts_builtin_sym_end] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1716), + [anon_sym_macro_rules_BANG] = ACTIONS(1716), + [anon_sym_LPAREN] = ACTIONS(1716), + [anon_sym_LBRACE] = ACTIONS(1716), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_LBRACK] = ACTIONS(1716), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_u8] = ACTIONS(1718), + [anon_sym_i8] = ACTIONS(1718), + [anon_sym_u16] = ACTIONS(1718), + [anon_sym_i16] = ACTIONS(1718), + [anon_sym_u32] = ACTIONS(1718), + [anon_sym_i32] = ACTIONS(1718), + [anon_sym_u64] = ACTIONS(1718), + [anon_sym_i64] = ACTIONS(1718), + [anon_sym_u128] = ACTIONS(1718), + [anon_sym_i128] = ACTIONS(1718), + [anon_sym_isize] = ACTIONS(1718), + [anon_sym_usize] = ACTIONS(1718), + [anon_sym_f32] = ACTIONS(1718), + [anon_sym_f64] = ACTIONS(1718), + [anon_sym_bool] = ACTIONS(1718), + [anon_sym_str] = ACTIONS(1718), + [anon_sym_char] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1718), + [anon_sym_async] = ACTIONS(1718), + [anon_sym_break] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1718), + [anon_sym_continue] = ACTIONS(1718), + [anon_sym_default] = ACTIONS(1718), + [anon_sym_enum] = ACTIONS(1718), + [anon_sym_fn] = ACTIONS(1718), + [anon_sym_for] = ACTIONS(1718), + [anon_sym_if] = ACTIONS(1718), + [anon_sym_impl] = ACTIONS(1718), + [anon_sym_let] = ACTIONS(1718), + [anon_sym_loop] = ACTIONS(1718), + [anon_sym_match] = ACTIONS(1718), + [anon_sym_mod] = ACTIONS(1718), + [anon_sym_pub] = ACTIONS(1718), + [anon_sym_return] = ACTIONS(1718), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_struct] = ACTIONS(1718), + [anon_sym_trait] = ACTIONS(1718), + [anon_sym_type] = ACTIONS(1718), + [anon_sym_union] = ACTIONS(1718), + [anon_sym_unsafe] = ACTIONS(1718), + [anon_sym_use] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1716), + [anon_sym_BANG] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1716), + [anon_sym_COLON_COLON] = ACTIONS(1716), + [anon_sym_AMP] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1716), + [anon_sym_PIPE] = ACTIONS(1716), + [anon_sym_move] = ACTIONS(1718), + [sym_integer_literal] = ACTIONS(1716), + [aux_sym_string_literal_token1] = ACTIONS(1716), + [sym_char_literal] = ACTIONS(1716), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1724), - [sym_super] = ACTIONS(1724), - [sym_crate] = ACTIONS(1724), - [sym_metavariable] = ACTIONS(1722), - [sym_raw_string_literal] = ACTIONS(1722), - [sym_float_literal] = ACTIONS(1722), + [sym_self] = ACTIONS(1718), + [sym_super] = ACTIONS(1718), + [sym_crate] = ACTIONS(1718), + [sym_metavariable] = ACTIONS(1716), + [sym_raw_string_literal] = ACTIONS(1716), + [sym_float_literal] = ACTIONS(1716), [sym_block_comment] = ACTIONS(3), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_macro_rules_BANG] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_u8] = ACTIONS(1728), - [anon_sym_i8] = ACTIONS(1728), - [anon_sym_u16] = ACTIONS(1728), - [anon_sym_i16] = ACTIONS(1728), - [anon_sym_u32] = ACTIONS(1728), - [anon_sym_i32] = ACTIONS(1728), - [anon_sym_u64] = ACTIONS(1728), - [anon_sym_i64] = ACTIONS(1728), - [anon_sym_u128] = ACTIONS(1728), - [anon_sym_i128] = ACTIONS(1728), - [anon_sym_isize] = ACTIONS(1728), - [anon_sym_usize] = ACTIONS(1728), - [anon_sym_f32] = ACTIONS(1728), - [anon_sym_f64] = ACTIONS(1728), - [anon_sym_bool] = ACTIONS(1728), - [anon_sym_str] = ACTIONS(1728), - [anon_sym_char] = ACTIONS(1728), - [anon_sym_SQUOTE] = ACTIONS(1728), - [anon_sym_async] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_fn] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_impl] = ACTIONS(1728), - [anon_sym_let] = ACTIONS(1728), - [anon_sym_loop] = ACTIONS(1728), - [anon_sym_match] = ACTIONS(1728), - [anon_sym_mod] = ACTIONS(1728), - [anon_sym_pub] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_trait] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_unsafe] = ACTIONS(1728), - [anon_sym_use] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(1726), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_DOT_DOT] = ACTIONS(1726), - [anon_sym_DASH] = ACTIONS(1726), - [anon_sym_PIPE] = ACTIONS(1726), - [anon_sym_move] = ACTIONS(1728), - [sym_integer_literal] = ACTIONS(1726), - [aux_sym_string_literal_token1] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1720), + [sym_identifier] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1720), + [anon_sym_macro_rules_BANG] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1720), + [anon_sym_RBRACE] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_STAR] = ACTIONS(1720), + [anon_sym_u8] = ACTIONS(1722), + [anon_sym_i8] = ACTIONS(1722), + [anon_sym_u16] = ACTIONS(1722), + [anon_sym_i16] = ACTIONS(1722), + [anon_sym_u32] = ACTIONS(1722), + [anon_sym_i32] = ACTIONS(1722), + [anon_sym_u64] = ACTIONS(1722), + [anon_sym_i64] = ACTIONS(1722), + [anon_sym_u128] = ACTIONS(1722), + [anon_sym_i128] = ACTIONS(1722), + [anon_sym_isize] = ACTIONS(1722), + [anon_sym_usize] = ACTIONS(1722), + [anon_sym_f32] = ACTIONS(1722), + [anon_sym_f64] = ACTIONS(1722), + [anon_sym_bool] = ACTIONS(1722), + [anon_sym_str] = ACTIONS(1722), + [anon_sym_char] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1722), + [anon_sym_async] = ACTIONS(1722), + [anon_sym_break] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1722), + [anon_sym_continue] = ACTIONS(1722), + [anon_sym_default] = ACTIONS(1722), + [anon_sym_enum] = ACTIONS(1722), + [anon_sym_fn] = ACTIONS(1722), + [anon_sym_for] = ACTIONS(1722), + [anon_sym_if] = ACTIONS(1722), + [anon_sym_impl] = ACTIONS(1722), + [anon_sym_let] = ACTIONS(1722), + [anon_sym_loop] = ACTIONS(1722), + [anon_sym_match] = ACTIONS(1722), + [anon_sym_mod] = ACTIONS(1722), + [anon_sym_pub] = ACTIONS(1722), + [anon_sym_return] = ACTIONS(1722), + [anon_sym_static] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1722), + [anon_sym_trait] = ACTIONS(1722), + [anon_sym_type] = ACTIONS(1722), + [anon_sym_union] = ACTIONS(1722), + [anon_sym_unsafe] = ACTIONS(1722), + [anon_sym_use] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1720), + [anon_sym_COLON_COLON] = ACTIONS(1720), + [anon_sym_AMP] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PIPE] = ACTIONS(1720), + [anon_sym_move] = ACTIONS(1722), + [sym_integer_literal] = ACTIONS(1720), + [aux_sym_string_literal_token1] = ACTIONS(1720), + [sym_char_literal] = ACTIONS(1720), + [anon_sym_true] = ACTIONS(1722), + [anon_sym_false] = ACTIONS(1722), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1728), - [sym_super] = ACTIONS(1728), - [sym_crate] = ACTIONS(1728), - [sym_metavariable] = ACTIONS(1726), - [sym_raw_string_literal] = ACTIONS(1726), - [sym_float_literal] = ACTIONS(1726), + [sym_self] = ACTIONS(1722), + [sym_super] = ACTIONS(1722), + [sym_crate] = ACTIONS(1722), + [sym_metavariable] = ACTIONS(1720), + [sym_raw_string_literal] = ACTIONS(1720), + [sym_float_literal] = ACTIONS(1720), [sym_block_comment] = ACTIONS(3), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_macro_rules_BANG] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_u8] = ACTIONS(1732), - [anon_sym_i8] = ACTIONS(1732), - [anon_sym_u16] = ACTIONS(1732), - [anon_sym_i16] = ACTIONS(1732), - [anon_sym_u32] = ACTIONS(1732), - [anon_sym_i32] = ACTIONS(1732), - [anon_sym_u64] = ACTIONS(1732), - [anon_sym_i64] = ACTIONS(1732), - [anon_sym_u128] = ACTIONS(1732), - [anon_sym_i128] = ACTIONS(1732), - [anon_sym_isize] = ACTIONS(1732), - [anon_sym_usize] = ACTIONS(1732), - [anon_sym_f32] = ACTIONS(1732), - [anon_sym_f64] = ACTIONS(1732), - [anon_sym_bool] = ACTIONS(1732), - [anon_sym_str] = ACTIONS(1732), - [anon_sym_char] = ACTIONS(1732), - [anon_sym_SQUOTE] = ACTIONS(1732), - [anon_sym_async] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_fn] = ACTIONS(1732), - [anon_sym_for] = ACTIONS(1732), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_impl] = ACTIONS(1732), - [anon_sym_let] = ACTIONS(1732), - [anon_sym_loop] = ACTIONS(1732), - [anon_sym_match] = ACTIONS(1732), - [anon_sym_mod] = ACTIONS(1732), - [anon_sym_pub] = ACTIONS(1732), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_trait] = ACTIONS(1732), - [anon_sym_type] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [anon_sym_unsafe] = ACTIONS(1732), - [anon_sym_use] = ACTIONS(1732), - [anon_sym_while] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LT] = ACTIONS(1730), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1730), - [anon_sym_DOT_DOT] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PIPE] = ACTIONS(1730), - [anon_sym_move] = ACTIONS(1732), - [sym_integer_literal] = ACTIONS(1730), - [aux_sym_string_literal_token1] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), + [ts_builtin_sym_end] = ACTIONS(1724), + [sym_identifier] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1724), + [anon_sym_macro_rules_BANG] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACE] = ACTIONS(1724), + [anon_sym_RBRACE] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_u8] = ACTIONS(1726), + [anon_sym_i8] = ACTIONS(1726), + [anon_sym_u16] = ACTIONS(1726), + [anon_sym_i16] = ACTIONS(1726), + [anon_sym_u32] = ACTIONS(1726), + [anon_sym_i32] = ACTIONS(1726), + [anon_sym_u64] = ACTIONS(1726), + [anon_sym_i64] = ACTIONS(1726), + [anon_sym_u128] = ACTIONS(1726), + [anon_sym_i128] = ACTIONS(1726), + [anon_sym_isize] = ACTIONS(1726), + [anon_sym_usize] = ACTIONS(1726), + [anon_sym_f32] = ACTIONS(1726), + [anon_sym_f64] = ACTIONS(1726), + [anon_sym_bool] = ACTIONS(1726), + [anon_sym_str] = ACTIONS(1726), + [anon_sym_char] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1726), + [anon_sym_async] = ACTIONS(1726), + [anon_sym_break] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1726), + [anon_sym_continue] = ACTIONS(1726), + [anon_sym_default] = ACTIONS(1726), + [anon_sym_enum] = ACTIONS(1726), + [anon_sym_fn] = ACTIONS(1726), + [anon_sym_for] = ACTIONS(1726), + [anon_sym_if] = ACTIONS(1726), + [anon_sym_impl] = ACTIONS(1726), + [anon_sym_let] = ACTIONS(1726), + [anon_sym_loop] = ACTIONS(1726), + [anon_sym_match] = ACTIONS(1726), + [anon_sym_mod] = ACTIONS(1726), + [anon_sym_pub] = ACTIONS(1726), + [anon_sym_return] = ACTIONS(1726), + [anon_sym_static] = ACTIONS(1726), + [anon_sym_struct] = ACTIONS(1726), + [anon_sym_trait] = ACTIONS(1726), + [anon_sym_type] = ACTIONS(1726), + [anon_sym_union] = ACTIONS(1726), + [anon_sym_unsafe] = ACTIONS(1726), + [anon_sym_use] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1724), + [anon_sym_BANG] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1724), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PIPE] = ACTIONS(1724), + [anon_sym_move] = ACTIONS(1726), + [sym_integer_literal] = ACTIONS(1724), + [aux_sym_string_literal_token1] = ACTIONS(1724), + [sym_char_literal] = ACTIONS(1724), + [anon_sym_true] = ACTIONS(1726), + [anon_sym_false] = ACTIONS(1726), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1732), - [sym_super] = ACTIONS(1732), - [sym_crate] = ACTIONS(1732), - [sym_metavariable] = ACTIONS(1730), - [sym_raw_string_literal] = ACTIONS(1730), - [sym_float_literal] = ACTIONS(1730), + [sym_self] = ACTIONS(1726), + [sym_super] = ACTIONS(1726), + [sym_crate] = ACTIONS(1726), + [sym_metavariable] = ACTIONS(1724), + [sym_raw_string_literal] = ACTIONS(1724), + [sym_float_literal] = ACTIONS(1724), [sym_block_comment] = ACTIONS(3), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1736), - [anon_sym_SEMI] = ACTIONS(1734), - [anon_sym_macro_rules_BANG] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_u8] = ACTIONS(1736), - [anon_sym_i8] = ACTIONS(1736), - [anon_sym_u16] = ACTIONS(1736), - [anon_sym_i16] = ACTIONS(1736), - [anon_sym_u32] = ACTIONS(1736), - [anon_sym_i32] = ACTIONS(1736), - [anon_sym_u64] = ACTIONS(1736), - [anon_sym_i64] = ACTIONS(1736), - [anon_sym_u128] = ACTIONS(1736), - [anon_sym_i128] = ACTIONS(1736), - [anon_sym_isize] = ACTIONS(1736), - [anon_sym_usize] = ACTIONS(1736), - [anon_sym_f32] = ACTIONS(1736), - [anon_sym_f64] = ACTIONS(1736), - [anon_sym_bool] = ACTIONS(1736), - [anon_sym_str] = ACTIONS(1736), - [anon_sym_char] = ACTIONS(1736), - [anon_sym_SQUOTE] = ACTIONS(1736), - [anon_sym_async] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_const] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_enum] = ACTIONS(1736), - [anon_sym_fn] = ACTIONS(1736), - [anon_sym_for] = ACTIONS(1736), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_impl] = ACTIONS(1736), - [anon_sym_let] = ACTIONS(1736), - [anon_sym_loop] = ACTIONS(1736), - [anon_sym_match] = ACTIONS(1736), - [anon_sym_mod] = ACTIONS(1736), - [anon_sym_pub] = ACTIONS(1736), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_struct] = ACTIONS(1736), - [anon_sym_trait] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1736), - [anon_sym_union] = ACTIONS(1736), - [anon_sym_unsafe] = ACTIONS(1736), - [anon_sym_use] = ACTIONS(1736), - [anon_sym_while] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PIPE] = ACTIONS(1734), - [anon_sym_move] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [aux_sym_string_literal_token1] = ACTIONS(1734), - [sym_char_literal] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), + [ts_builtin_sym_end] = ACTIONS(1728), + [sym_identifier] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_macro_rules_BANG] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1728), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_fn] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_impl] = ACTIONS(1730), + [anon_sym_let] = ACTIONS(1730), + [anon_sym_loop] = ACTIONS(1730), + [anon_sym_match] = ACTIONS(1730), + [anon_sym_mod] = ACTIONS(1730), + [anon_sym_pub] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_trait] = ACTIONS(1730), + [anon_sym_type] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_unsafe] = ACTIONS(1730), + [anon_sym_use] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1728), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PIPE] = ACTIONS(1728), + [anon_sym_move] = ACTIONS(1730), + [sym_integer_literal] = ACTIONS(1728), + [aux_sym_string_literal_token1] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [anon_sym_true] = ACTIONS(1730), + [anon_sym_false] = ACTIONS(1730), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1736), - [sym_super] = ACTIONS(1736), - [sym_crate] = ACTIONS(1736), - [sym_metavariable] = ACTIONS(1734), - [sym_raw_string_literal] = ACTIONS(1734), - [sym_float_literal] = ACTIONS(1734), + [sym_self] = ACTIONS(1730), + [sym_super] = ACTIONS(1730), + [sym_crate] = ACTIONS(1730), + [sym_metavariable] = ACTIONS(1728), + [sym_raw_string_literal] = ACTIONS(1728), + [sym_float_literal] = ACTIONS(1728), [sym_block_comment] = ACTIONS(3), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1738), - [anon_sym_macro_rules_BANG] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_u8] = ACTIONS(1740), - [anon_sym_i8] = ACTIONS(1740), - [anon_sym_u16] = ACTIONS(1740), - [anon_sym_i16] = ACTIONS(1740), - [anon_sym_u32] = ACTIONS(1740), - [anon_sym_i32] = ACTIONS(1740), - [anon_sym_u64] = ACTIONS(1740), - [anon_sym_i64] = ACTIONS(1740), - [anon_sym_u128] = ACTIONS(1740), - [anon_sym_i128] = ACTIONS(1740), - [anon_sym_isize] = ACTIONS(1740), - [anon_sym_usize] = ACTIONS(1740), - [anon_sym_f32] = ACTIONS(1740), - [anon_sym_f64] = ACTIONS(1740), - [anon_sym_bool] = ACTIONS(1740), - [anon_sym_str] = ACTIONS(1740), - [anon_sym_char] = ACTIONS(1740), - [anon_sym_SQUOTE] = ACTIONS(1740), - [anon_sym_async] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_const] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_enum] = ACTIONS(1740), - [anon_sym_fn] = ACTIONS(1740), - [anon_sym_for] = ACTIONS(1740), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_impl] = ACTIONS(1740), - [anon_sym_let] = ACTIONS(1740), - [anon_sym_loop] = ACTIONS(1740), - [anon_sym_match] = ACTIONS(1740), - [anon_sym_mod] = ACTIONS(1740), - [anon_sym_pub] = ACTIONS(1740), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_struct] = ACTIONS(1740), - [anon_sym_trait] = ACTIONS(1740), - [anon_sym_type] = ACTIONS(1740), - [anon_sym_union] = ACTIONS(1740), - [anon_sym_unsafe] = ACTIONS(1740), - [anon_sym_use] = ACTIONS(1740), - [anon_sym_while] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1738), - [anon_sym_COLON_COLON] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1738), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PIPE] = ACTIONS(1738), - [anon_sym_move] = ACTIONS(1740), - [sym_integer_literal] = ACTIONS(1738), - [aux_sym_string_literal_token1] = ACTIONS(1738), - [sym_char_literal] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), + [ts_builtin_sym_end] = ACTIONS(1732), + [sym_identifier] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_macro_rules_BANG] = ACTIONS(1732), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_u8] = ACTIONS(1734), + [anon_sym_i8] = ACTIONS(1734), + [anon_sym_u16] = ACTIONS(1734), + [anon_sym_i16] = ACTIONS(1734), + [anon_sym_u32] = ACTIONS(1734), + [anon_sym_i32] = ACTIONS(1734), + [anon_sym_u64] = ACTIONS(1734), + [anon_sym_i64] = ACTIONS(1734), + [anon_sym_u128] = ACTIONS(1734), + [anon_sym_i128] = ACTIONS(1734), + [anon_sym_isize] = ACTIONS(1734), + [anon_sym_usize] = ACTIONS(1734), + [anon_sym_f32] = ACTIONS(1734), + [anon_sym_f64] = ACTIONS(1734), + [anon_sym_bool] = ACTIONS(1734), + [anon_sym_str] = ACTIONS(1734), + [anon_sym_char] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_enum] = ACTIONS(1734), + [anon_sym_fn] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_impl] = ACTIONS(1734), + [anon_sym_let] = ACTIONS(1734), + [anon_sym_loop] = ACTIONS(1734), + [anon_sym_match] = ACTIONS(1734), + [anon_sym_mod] = ACTIONS(1734), + [anon_sym_pub] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_struct] = ACTIONS(1734), + [anon_sym_trait] = ACTIONS(1734), + [anon_sym_type] = ACTIONS(1734), + [anon_sym_union] = ACTIONS(1734), + [anon_sym_unsafe] = ACTIONS(1734), + [anon_sym_use] = ACTIONS(1734), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1732), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_move] = ACTIONS(1734), + [sym_integer_literal] = ACTIONS(1732), + [aux_sym_string_literal_token1] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [anon_sym_true] = ACTIONS(1734), + [anon_sym_false] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1740), - [sym_super] = ACTIONS(1740), - [sym_crate] = ACTIONS(1740), - [sym_metavariable] = ACTIONS(1738), - [sym_raw_string_literal] = ACTIONS(1738), - [sym_float_literal] = ACTIONS(1738), + [sym_self] = ACTIONS(1734), + [sym_super] = ACTIONS(1734), + [sym_crate] = ACTIONS(1734), + [sym_metavariable] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1732), + [sym_float_literal] = ACTIONS(1732), [sym_block_comment] = ACTIONS(3), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1744), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_macro_rules_BANG] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_RBRACE] = ACTIONS(1742), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_u8] = ACTIONS(1744), - [anon_sym_i8] = ACTIONS(1744), - [anon_sym_u16] = ACTIONS(1744), - [anon_sym_i16] = ACTIONS(1744), - [anon_sym_u32] = ACTIONS(1744), - [anon_sym_i32] = ACTIONS(1744), - [anon_sym_u64] = ACTIONS(1744), - [anon_sym_i64] = ACTIONS(1744), - [anon_sym_u128] = ACTIONS(1744), - [anon_sym_i128] = ACTIONS(1744), - [anon_sym_isize] = ACTIONS(1744), - [anon_sym_usize] = ACTIONS(1744), - [anon_sym_f32] = ACTIONS(1744), - [anon_sym_f64] = ACTIONS(1744), - [anon_sym_bool] = ACTIONS(1744), - [anon_sym_str] = ACTIONS(1744), - [anon_sym_char] = ACTIONS(1744), - [anon_sym_SQUOTE] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_enum] = ACTIONS(1744), - [anon_sym_fn] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_impl] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_mod] = ACTIONS(1744), - [anon_sym_pub] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_struct] = ACTIONS(1744), - [anon_sym_trait] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1744), - [anon_sym_union] = ACTIONS(1744), - [anon_sym_unsafe] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1742), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1742), - [anon_sym_PIPE] = ACTIONS(1742), - [anon_sym_move] = ACTIONS(1744), - [sym_integer_literal] = ACTIONS(1742), - [aux_sym_string_literal_token1] = ACTIONS(1742), - [sym_char_literal] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), + [ts_builtin_sym_end] = ACTIONS(1736), + [sym_identifier] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1736), + [anon_sym_macro_rules_BANG] = ACTIONS(1736), + [anon_sym_LPAREN] = ACTIONS(1736), + [anon_sym_LBRACE] = ACTIONS(1736), + [anon_sym_RBRACE] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1736), + [anon_sym_STAR] = ACTIONS(1736), + [anon_sym_u8] = ACTIONS(1738), + [anon_sym_i8] = ACTIONS(1738), + [anon_sym_u16] = ACTIONS(1738), + [anon_sym_i16] = ACTIONS(1738), + [anon_sym_u32] = ACTIONS(1738), + [anon_sym_i32] = ACTIONS(1738), + [anon_sym_u64] = ACTIONS(1738), + [anon_sym_i64] = ACTIONS(1738), + [anon_sym_u128] = ACTIONS(1738), + [anon_sym_i128] = ACTIONS(1738), + [anon_sym_isize] = ACTIONS(1738), + [anon_sym_usize] = ACTIONS(1738), + [anon_sym_f32] = ACTIONS(1738), + [anon_sym_f64] = ACTIONS(1738), + [anon_sym_bool] = ACTIONS(1738), + [anon_sym_str] = ACTIONS(1738), + [anon_sym_char] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1738), + [anon_sym_async] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1738), + [anon_sym_enum] = ACTIONS(1738), + [anon_sym_fn] = ACTIONS(1738), + [anon_sym_for] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_impl] = ACTIONS(1738), + [anon_sym_let] = ACTIONS(1738), + [anon_sym_loop] = ACTIONS(1738), + [anon_sym_match] = ACTIONS(1738), + [anon_sym_mod] = ACTIONS(1738), + [anon_sym_pub] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_static] = ACTIONS(1738), + [anon_sym_struct] = ACTIONS(1738), + [anon_sym_trait] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1738), + [anon_sym_union] = ACTIONS(1738), + [anon_sym_unsafe] = ACTIONS(1738), + [anon_sym_use] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1736), + [anon_sym_BANG] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1736), + [anon_sym_COLON_COLON] = ACTIONS(1736), + [anon_sym_AMP] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1736), + [anon_sym_PIPE] = ACTIONS(1736), + [anon_sym_move] = ACTIONS(1738), + [sym_integer_literal] = ACTIONS(1736), + [aux_sym_string_literal_token1] = ACTIONS(1736), + [sym_char_literal] = ACTIONS(1736), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1744), - [sym_super] = ACTIONS(1744), - [sym_crate] = ACTIONS(1744), - [sym_metavariable] = ACTIONS(1742), - [sym_raw_string_literal] = ACTIONS(1742), - [sym_float_literal] = ACTIONS(1742), + [sym_self] = ACTIONS(1738), + [sym_super] = ACTIONS(1738), + [sym_crate] = ACTIONS(1738), + [sym_metavariable] = ACTIONS(1736), + [sym_raw_string_literal] = ACTIONS(1736), + [sym_float_literal] = ACTIONS(1736), [sym_block_comment] = ACTIONS(3), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1748), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_macro_rules_BANG] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_u8] = ACTIONS(1748), - [anon_sym_i8] = ACTIONS(1748), - [anon_sym_u16] = ACTIONS(1748), - [anon_sym_i16] = ACTIONS(1748), - [anon_sym_u32] = ACTIONS(1748), - [anon_sym_i32] = ACTIONS(1748), - [anon_sym_u64] = ACTIONS(1748), - [anon_sym_i64] = ACTIONS(1748), - [anon_sym_u128] = ACTIONS(1748), - [anon_sym_i128] = ACTIONS(1748), - [anon_sym_isize] = ACTIONS(1748), - [anon_sym_usize] = ACTIONS(1748), - [anon_sym_f32] = ACTIONS(1748), - [anon_sym_f64] = ACTIONS(1748), - [anon_sym_bool] = ACTIONS(1748), - [anon_sym_str] = ACTIONS(1748), - [anon_sym_char] = ACTIONS(1748), - [anon_sym_SQUOTE] = ACTIONS(1748), - [anon_sym_async] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_enum] = ACTIONS(1748), - [anon_sym_fn] = ACTIONS(1748), - [anon_sym_for] = ACTIONS(1748), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_impl] = ACTIONS(1748), - [anon_sym_let] = ACTIONS(1748), - [anon_sym_loop] = ACTIONS(1748), - [anon_sym_match] = ACTIONS(1748), - [anon_sym_mod] = ACTIONS(1748), - [anon_sym_pub] = ACTIONS(1748), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_struct] = ACTIONS(1748), - [anon_sym_trait] = ACTIONS(1748), - [anon_sym_type] = ACTIONS(1748), - [anon_sym_union] = ACTIONS(1748), - [anon_sym_unsafe] = ACTIONS(1748), - [anon_sym_use] = ACTIONS(1748), - [anon_sym_while] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1746), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1746), - [anon_sym_COLON_COLON] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1746), - [anon_sym_DOT_DOT] = ACTIONS(1746), - [anon_sym_DASH] = ACTIONS(1746), - [anon_sym_PIPE] = ACTIONS(1746), - [anon_sym_move] = ACTIONS(1748), - [sym_integer_literal] = ACTIONS(1746), - [aux_sym_string_literal_token1] = ACTIONS(1746), - [sym_char_literal] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), + [ts_builtin_sym_end] = ACTIONS(1740), + [sym_identifier] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_macro_rules_BANG] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_u8] = ACTIONS(1742), + [anon_sym_i8] = ACTIONS(1742), + [anon_sym_u16] = ACTIONS(1742), + [anon_sym_i16] = ACTIONS(1742), + [anon_sym_u32] = ACTIONS(1742), + [anon_sym_i32] = ACTIONS(1742), + [anon_sym_u64] = ACTIONS(1742), + [anon_sym_i64] = ACTIONS(1742), + [anon_sym_u128] = ACTIONS(1742), + [anon_sym_i128] = ACTIONS(1742), + [anon_sym_isize] = ACTIONS(1742), + [anon_sym_usize] = ACTIONS(1742), + [anon_sym_f32] = ACTIONS(1742), + [anon_sym_f64] = ACTIONS(1742), + [anon_sym_bool] = ACTIONS(1742), + [anon_sym_str] = ACTIONS(1742), + [anon_sym_char] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1742), + [anon_sym_async] = ACTIONS(1742), + [anon_sym_break] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_continue] = ACTIONS(1742), + [anon_sym_default] = ACTIONS(1742), + [anon_sym_enum] = ACTIONS(1742), + [anon_sym_fn] = ACTIONS(1742), + [anon_sym_for] = ACTIONS(1742), + [anon_sym_if] = ACTIONS(1742), + [anon_sym_impl] = ACTIONS(1742), + [anon_sym_let] = ACTIONS(1742), + [anon_sym_loop] = ACTIONS(1742), + [anon_sym_match] = ACTIONS(1742), + [anon_sym_mod] = ACTIONS(1742), + [anon_sym_pub] = ACTIONS(1742), + [anon_sym_return] = ACTIONS(1742), + [anon_sym_static] = ACTIONS(1742), + [anon_sym_struct] = ACTIONS(1742), + [anon_sym_trait] = ACTIONS(1742), + [anon_sym_type] = ACTIONS(1742), + [anon_sym_union] = ACTIONS(1742), + [anon_sym_unsafe] = ACTIONS(1742), + [anon_sym_use] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1740), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_AMP] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1742), + [sym_integer_literal] = ACTIONS(1740), + [aux_sym_string_literal_token1] = ACTIONS(1740), + [sym_char_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1742), + [anon_sym_false] = ACTIONS(1742), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1748), - [sym_super] = ACTIONS(1748), - [sym_crate] = ACTIONS(1748), - [sym_metavariable] = ACTIONS(1746), - [sym_raw_string_literal] = ACTIONS(1746), - [sym_float_literal] = ACTIONS(1746), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1740), + [sym_raw_string_literal] = ACTIONS(1740), + [sym_float_literal] = ACTIONS(1740), [sym_block_comment] = ACTIONS(3), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1752), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_macro_rules_BANG] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_RBRACE] = ACTIONS(1750), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_u8] = ACTIONS(1752), - [anon_sym_i8] = ACTIONS(1752), - [anon_sym_u16] = ACTIONS(1752), - [anon_sym_i16] = ACTIONS(1752), - [anon_sym_u32] = ACTIONS(1752), - [anon_sym_i32] = ACTIONS(1752), - [anon_sym_u64] = ACTIONS(1752), - [anon_sym_i64] = ACTIONS(1752), - [anon_sym_u128] = ACTIONS(1752), - [anon_sym_i128] = ACTIONS(1752), - [anon_sym_isize] = ACTIONS(1752), - [anon_sym_usize] = ACTIONS(1752), - [anon_sym_f32] = ACTIONS(1752), - [anon_sym_f64] = ACTIONS(1752), - [anon_sym_bool] = ACTIONS(1752), - [anon_sym_str] = ACTIONS(1752), - [anon_sym_char] = ACTIONS(1752), - [anon_sym_SQUOTE] = ACTIONS(1752), - [anon_sym_async] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_const] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_enum] = ACTIONS(1752), - [anon_sym_fn] = ACTIONS(1752), - [anon_sym_for] = ACTIONS(1752), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_impl] = ACTIONS(1752), - [anon_sym_let] = ACTIONS(1752), - [anon_sym_loop] = ACTIONS(1752), - [anon_sym_match] = ACTIONS(1752), - [anon_sym_mod] = ACTIONS(1752), - [anon_sym_pub] = ACTIONS(1752), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_struct] = ACTIONS(1752), - [anon_sym_trait] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1752), - [anon_sym_union] = ACTIONS(1752), - [anon_sym_unsafe] = ACTIONS(1752), - [anon_sym_use] = ACTIONS(1752), - [anon_sym_while] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1750), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_COLON_COLON] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_DOT_DOT] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1752), - [sym_integer_literal] = ACTIONS(1750), - [aux_sym_string_literal_token1] = ACTIONS(1750), - [sym_char_literal] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), + [ts_builtin_sym_end] = ACTIONS(1744), + [sym_identifier] = ACTIONS(1746), + [anon_sym_SEMI] = ACTIONS(1744), + [anon_sym_macro_rules_BANG] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1744), + [anon_sym_RBRACE] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_u8] = ACTIONS(1746), + [anon_sym_i8] = ACTIONS(1746), + [anon_sym_u16] = ACTIONS(1746), + [anon_sym_i16] = ACTIONS(1746), + [anon_sym_u32] = ACTIONS(1746), + [anon_sym_i32] = ACTIONS(1746), + [anon_sym_u64] = ACTIONS(1746), + [anon_sym_i64] = ACTIONS(1746), + [anon_sym_u128] = ACTIONS(1746), + [anon_sym_i128] = ACTIONS(1746), + [anon_sym_isize] = ACTIONS(1746), + [anon_sym_usize] = ACTIONS(1746), + [anon_sym_f32] = ACTIONS(1746), + [anon_sym_f64] = ACTIONS(1746), + [anon_sym_bool] = ACTIONS(1746), + [anon_sym_str] = ACTIONS(1746), + [anon_sym_char] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1746), + [anon_sym_async] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1746), + [anon_sym_const] = ACTIONS(1746), + [anon_sym_continue] = ACTIONS(1746), + [anon_sym_default] = ACTIONS(1746), + [anon_sym_enum] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1746), + [anon_sym_for] = ACTIONS(1746), + [anon_sym_if] = ACTIONS(1746), + [anon_sym_impl] = ACTIONS(1746), + [anon_sym_let] = ACTIONS(1746), + [anon_sym_loop] = ACTIONS(1746), + [anon_sym_match] = ACTIONS(1746), + [anon_sym_mod] = ACTIONS(1746), + [anon_sym_pub] = ACTIONS(1746), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1746), + [anon_sym_struct] = ACTIONS(1746), + [anon_sym_trait] = ACTIONS(1746), + [anon_sym_type] = ACTIONS(1746), + [anon_sym_union] = ACTIONS(1746), + [anon_sym_unsafe] = ACTIONS(1746), + [anon_sym_use] = ACTIONS(1746), + [anon_sym_while] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1744), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PIPE] = ACTIONS(1744), + [anon_sym_move] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [aux_sym_string_literal_token1] = ACTIONS(1744), + [sym_char_literal] = ACTIONS(1744), + [anon_sym_true] = ACTIONS(1746), + [anon_sym_false] = ACTIONS(1746), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1750), - [sym_raw_string_literal] = ACTIONS(1750), - [sym_float_literal] = ACTIONS(1750), + [sym_self] = ACTIONS(1746), + [sym_super] = ACTIONS(1746), + [sym_crate] = ACTIONS(1746), + [sym_metavariable] = ACTIONS(1744), + [sym_raw_string_literal] = ACTIONS(1744), + [sym_float_literal] = ACTIONS(1744), [sym_block_comment] = ACTIONS(3), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1756), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_macro_rules_BANG] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_SQUOTE] = ACTIONS(1756), - [anon_sym_async] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_enum] = ACTIONS(1756), - [anon_sym_fn] = ACTIONS(1756), - [anon_sym_for] = ACTIONS(1756), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_impl] = ACTIONS(1756), - [anon_sym_let] = ACTIONS(1756), - [anon_sym_loop] = ACTIONS(1756), - [anon_sym_match] = ACTIONS(1756), - [anon_sym_mod] = ACTIONS(1756), - [anon_sym_pub] = ACTIONS(1756), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1756), - [anon_sym_trait] = ACTIONS(1756), - [anon_sym_type] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_unsafe] = ACTIONS(1756), - [anon_sym_use] = ACTIONS(1756), - [anon_sym_while] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1754), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_LT] = ACTIONS(1754), - [anon_sym_COLON_COLON] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1754), - [anon_sym_DASH] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_move] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1754), - [aux_sym_string_literal_token1] = ACTIONS(1754), - [sym_char_literal] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), + [ts_builtin_sym_end] = ACTIONS(1748), + [sym_identifier] = ACTIONS(1750), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_macro_rules_BANG] = ACTIONS(1748), + [anon_sym_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACE] = ACTIONS(1748), + [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1748), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_u8] = ACTIONS(1750), + [anon_sym_i8] = ACTIONS(1750), + [anon_sym_u16] = ACTIONS(1750), + [anon_sym_i16] = ACTIONS(1750), + [anon_sym_u32] = ACTIONS(1750), + [anon_sym_i32] = ACTIONS(1750), + [anon_sym_u64] = ACTIONS(1750), + [anon_sym_i64] = ACTIONS(1750), + [anon_sym_u128] = ACTIONS(1750), + [anon_sym_i128] = ACTIONS(1750), + [anon_sym_isize] = ACTIONS(1750), + [anon_sym_usize] = ACTIONS(1750), + [anon_sym_f32] = ACTIONS(1750), + [anon_sym_f64] = ACTIONS(1750), + [anon_sym_bool] = ACTIONS(1750), + [anon_sym_str] = ACTIONS(1750), + [anon_sym_char] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1750), + [anon_sym_async] = ACTIONS(1750), + [anon_sym_break] = ACTIONS(1750), + [anon_sym_const] = ACTIONS(1750), + [anon_sym_continue] = ACTIONS(1750), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_enum] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1750), + [anon_sym_for] = ACTIONS(1750), + [anon_sym_if] = ACTIONS(1750), + [anon_sym_impl] = ACTIONS(1750), + [anon_sym_let] = ACTIONS(1750), + [anon_sym_loop] = ACTIONS(1750), + [anon_sym_match] = ACTIONS(1750), + [anon_sym_mod] = ACTIONS(1750), + [anon_sym_pub] = ACTIONS(1750), + [anon_sym_return] = ACTIONS(1750), + [anon_sym_static] = ACTIONS(1750), + [anon_sym_struct] = ACTIONS(1750), + [anon_sym_trait] = ACTIONS(1750), + [anon_sym_type] = ACTIONS(1750), + [anon_sym_union] = ACTIONS(1750), + [anon_sym_unsafe] = ACTIONS(1750), + [anon_sym_use] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1748), + [anon_sym_BANG] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1748), + [anon_sym_COLON_COLON] = ACTIONS(1748), + [anon_sym_AMP] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1748), + [anon_sym_PIPE] = ACTIONS(1748), + [anon_sym_move] = ACTIONS(1750), + [sym_integer_literal] = ACTIONS(1748), + [aux_sym_string_literal_token1] = ACTIONS(1748), + [sym_char_literal] = ACTIONS(1748), + [anon_sym_true] = ACTIONS(1750), + [anon_sym_false] = ACTIONS(1750), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1754), - [sym_raw_string_literal] = ACTIONS(1754), - [sym_float_literal] = ACTIONS(1754), + [sym_self] = ACTIONS(1750), + [sym_super] = ACTIONS(1750), + [sym_crate] = ACTIONS(1750), + [sym_metavariable] = ACTIONS(1748), + [sym_raw_string_literal] = ACTIONS(1748), + [sym_float_literal] = ACTIONS(1748), [sym_block_comment] = ACTIONS(3), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1760), - [anon_sym_SEMI] = ACTIONS(1758), - [anon_sym_macro_rules_BANG] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_u8] = ACTIONS(1760), - [anon_sym_i8] = ACTIONS(1760), - [anon_sym_u16] = ACTIONS(1760), - [anon_sym_i16] = ACTIONS(1760), - [anon_sym_u32] = ACTIONS(1760), - [anon_sym_i32] = ACTIONS(1760), - [anon_sym_u64] = ACTIONS(1760), - [anon_sym_i64] = ACTIONS(1760), - [anon_sym_u128] = ACTIONS(1760), - [anon_sym_i128] = ACTIONS(1760), - [anon_sym_isize] = ACTIONS(1760), - [anon_sym_usize] = ACTIONS(1760), - [anon_sym_f32] = ACTIONS(1760), - [anon_sym_f64] = ACTIONS(1760), - [anon_sym_bool] = ACTIONS(1760), - [anon_sym_str] = ACTIONS(1760), - [anon_sym_char] = ACTIONS(1760), - [anon_sym_SQUOTE] = ACTIONS(1760), - [anon_sym_async] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_const] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_enum] = ACTIONS(1760), - [anon_sym_fn] = ACTIONS(1760), - [anon_sym_for] = ACTIONS(1760), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_impl] = ACTIONS(1760), - [anon_sym_let] = ACTIONS(1760), - [anon_sym_loop] = ACTIONS(1760), - [anon_sym_match] = ACTIONS(1760), - [anon_sym_mod] = ACTIONS(1760), - [anon_sym_pub] = ACTIONS(1760), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_struct] = ACTIONS(1760), - [anon_sym_trait] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1760), - [anon_sym_union] = ACTIONS(1760), - [anon_sym_unsafe] = ACTIONS(1760), - [anon_sym_use] = ACTIONS(1760), - [anon_sym_while] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1758), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1758), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1758), - [anon_sym_DOT_DOT] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PIPE] = ACTIONS(1758), - [anon_sym_move] = ACTIONS(1760), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), + [ts_builtin_sym_end] = ACTIONS(1752), + [sym_identifier] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1752), + [anon_sym_macro_rules_BANG] = ACTIONS(1752), + [anon_sym_LPAREN] = ACTIONS(1752), + [anon_sym_LBRACE] = ACTIONS(1752), + [anon_sym_RBRACE] = ACTIONS(1752), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1754), + [anon_sym_i8] = ACTIONS(1754), + [anon_sym_u16] = ACTIONS(1754), + [anon_sym_i16] = ACTIONS(1754), + [anon_sym_u32] = ACTIONS(1754), + [anon_sym_i32] = ACTIONS(1754), + [anon_sym_u64] = ACTIONS(1754), + [anon_sym_i64] = ACTIONS(1754), + [anon_sym_u128] = ACTIONS(1754), + [anon_sym_i128] = ACTIONS(1754), + [anon_sym_isize] = ACTIONS(1754), + [anon_sym_usize] = ACTIONS(1754), + [anon_sym_f32] = ACTIONS(1754), + [anon_sym_f64] = ACTIONS(1754), + [anon_sym_bool] = ACTIONS(1754), + [anon_sym_str] = ACTIONS(1754), + [anon_sym_char] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1754), + [anon_sym_async] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_const] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_default] = ACTIONS(1754), + [anon_sym_enum] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1754), + [anon_sym_for] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_impl] = ACTIONS(1754), + [anon_sym_let] = ACTIONS(1754), + [anon_sym_loop] = ACTIONS(1754), + [anon_sym_match] = ACTIONS(1754), + [anon_sym_mod] = ACTIONS(1754), + [anon_sym_pub] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1754), + [anon_sym_trait] = ACTIONS(1754), + [anon_sym_type] = ACTIONS(1754), + [anon_sym_union] = ACTIONS(1754), + [anon_sym_unsafe] = ACTIONS(1754), + [anon_sym_use] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1752), + [anon_sym_BANG] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1752), + [anon_sym_COLON_COLON] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_PIPE] = ACTIONS(1752), + [anon_sym_move] = ACTIONS(1754), + [sym_integer_literal] = ACTIONS(1752), + [aux_sym_string_literal_token1] = ACTIONS(1752), + [sym_char_literal] = ACTIONS(1752), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1760), - [sym_super] = ACTIONS(1760), - [sym_crate] = ACTIONS(1760), - [sym_metavariable] = ACTIONS(1758), - [sym_raw_string_literal] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [sym_self] = ACTIONS(1754), + [sym_super] = ACTIONS(1754), + [sym_crate] = ACTIONS(1754), + [sym_metavariable] = ACTIONS(1752), + [sym_raw_string_literal] = ACTIONS(1752), + [sym_float_literal] = ACTIONS(1752), [sym_block_comment] = ACTIONS(3), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1764), - [anon_sym_SEMI] = ACTIONS(1762), - [anon_sym_macro_rules_BANG] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_u8] = ACTIONS(1764), - [anon_sym_i8] = ACTIONS(1764), - [anon_sym_u16] = ACTIONS(1764), - [anon_sym_i16] = ACTIONS(1764), - [anon_sym_u32] = ACTIONS(1764), - [anon_sym_i32] = ACTIONS(1764), - [anon_sym_u64] = ACTIONS(1764), - [anon_sym_i64] = ACTIONS(1764), - [anon_sym_u128] = ACTIONS(1764), - [anon_sym_i128] = ACTIONS(1764), - [anon_sym_isize] = ACTIONS(1764), - [anon_sym_usize] = ACTIONS(1764), - [anon_sym_f32] = ACTIONS(1764), - [anon_sym_f64] = ACTIONS(1764), - [anon_sym_bool] = ACTIONS(1764), - [anon_sym_str] = ACTIONS(1764), - [anon_sym_char] = ACTIONS(1764), - [anon_sym_SQUOTE] = ACTIONS(1764), - [anon_sym_async] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_const] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_enum] = ACTIONS(1764), - [anon_sym_fn] = ACTIONS(1764), - [anon_sym_for] = ACTIONS(1764), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_impl] = ACTIONS(1764), - [anon_sym_let] = ACTIONS(1764), - [anon_sym_loop] = ACTIONS(1764), - [anon_sym_match] = ACTIONS(1764), - [anon_sym_mod] = ACTIONS(1764), - [anon_sym_pub] = ACTIONS(1764), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_struct] = ACTIONS(1764), - [anon_sym_trait] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_union] = ACTIONS(1764), - [anon_sym_unsafe] = ACTIONS(1764), - [anon_sym_use] = ACTIONS(1764), - [anon_sym_while] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1762), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_COLON_COLON] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1762), - [anon_sym_DOT_DOT] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [anon_sym_PIPE] = ACTIONS(1762), - [anon_sym_move] = ACTIONS(1764), - [sym_integer_literal] = ACTIONS(1762), - [aux_sym_string_literal_token1] = ACTIONS(1762), - [sym_char_literal] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1756), + [sym_identifier] = ACTIONS(1758), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_u8] = ACTIONS(1758), + [anon_sym_i8] = ACTIONS(1758), + [anon_sym_u16] = ACTIONS(1758), + [anon_sym_i16] = ACTIONS(1758), + [anon_sym_u32] = ACTIONS(1758), + [anon_sym_i32] = ACTIONS(1758), + [anon_sym_u64] = ACTIONS(1758), + [anon_sym_i64] = ACTIONS(1758), + [anon_sym_u128] = ACTIONS(1758), + [anon_sym_i128] = ACTIONS(1758), + [anon_sym_isize] = ACTIONS(1758), + [anon_sym_usize] = ACTIONS(1758), + [anon_sym_f32] = ACTIONS(1758), + [anon_sym_f64] = ACTIONS(1758), + [anon_sym_bool] = ACTIONS(1758), + [anon_sym_str] = ACTIONS(1758), + [anon_sym_char] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1758), + [anon_sym_async] = ACTIONS(1758), + [anon_sym_break] = ACTIONS(1758), + [anon_sym_const] = ACTIONS(1758), + [anon_sym_continue] = ACTIONS(1758), + [anon_sym_default] = ACTIONS(1758), + [anon_sym_enum] = ACTIONS(1758), + [anon_sym_fn] = ACTIONS(1758), + [anon_sym_for] = ACTIONS(1758), + [anon_sym_if] = ACTIONS(1758), + [anon_sym_impl] = ACTIONS(1758), + [anon_sym_let] = ACTIONS(1758), + [anon_sym_loop] = ACTIONS(1758), + [anon_sym_match] = ACTIONS(1758), + [anon_sym_mod] = ACTIONS(1758), + [anon_sym_pub] = ACTIONS(1758), + [anon_sym_return] = ACTIONS(1758), + [anon_sym_static] = ACTIONS(1758), + [anon_sym_struct] = ACTIONS(1758), + [anon_sym_trait] = ACTIONS(1758), + [anon_sym_type] = ACTIONS(1758), + [anon_sym_union] = ACTIONS(1758), + [anon_sym_unsafe] = ACTIONS(1758), + [anon_sym_use] = ACTIONS(1758), + [anon_sym_while] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1756), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_AMP] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1756), + [anon_sym_move] = ACTIONS(1758), + [sym_integer_literal] = ACTIONS(1756), + [aux_sym_string_literal_token1] = ACTIONS(1756), + [sym_char_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1758), + [anon_sym_false] = ACTIONS(1758), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1764), - [sym_super] = ACTIONS(1764), - [sym_crate] = ACTIONS(1764), - [sym_metavariable] = ACTIONS(1762), - [sym_raw_string_literal] = ACTIONS(1762), - [sym_float_literal] = ACTIONS(1762), + [sym_self] = ACTIONS(1758), + [sym_super] = ACTIONS(1758), + [sym_crate] = ACTIONS(1758), + [sym_metavariable] = ACTIONS(1756), + [sym_raw_string_literal] = ACTIONS(1756), + [sym_float_literal] = ACTIONS(1756), [sym_block_comment] = ACTIONS(3), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1768), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_macro_rules_BANG] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_RBRACE] = ACTIONS(1766), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1768), - [anon_sym_i8] = ACTIONS(1768), - [anon_sym_u16] = ACTIONS(1768), - [anon_sym_i16] = ACTIONS(1768), - [anon_sym_u32] = ACTIONS(1768), - [anon_sym_i32] = ACTIONS(1768), - [anon_sym_u64] = ACTIONS(1768), - [anon_sym_i64] = ACTIONS(1768), - [anon_sym_u128] = ACTIONS(1768), - [anon_sym_i128] = ACTIONS(1768), - [anon_sym_isize] = ACTIONS(1768), - [anon_sym_usize] = ACTIONS(1768), - [anon_sym_f32] = ACTIONS(1768), - [anon_sym_f64] = ACTIONS(1768), - [anon_sym_bool] = ACTIONS(1768), - [anon_sym_str] = ACTIONS(1768), - [anon_sym_char] = ACTIONS(1768), - [anon_sym_SQUOTE] = ACTIONS(1768), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_enum] = ACTIONS(1768), - [anon_sym_fn] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_impl] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_mod] = ACTIONS(1768), - [anon_sym_pub] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_struct] = ACTIONS(1768), - [anon_sym_trait] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1768), - [anon_sym_union] = ACTIONS(1768), - [anon_sym_unsafe] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_LT] = ACTIONS(1766), - [anon_sym_COLON_COLON] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1766), - [anon_sym_move] = ACTIONS(1768), - [sym_integer_literal] = ACTIONS(1766), - [aux_sym_string_literal_token1] = ACTIONS(1766), - [sym_char_literal] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), + [ts_builtin_sym_end] = ACTIONS(1760), + [sym_identifier] = ACTIONS(1762), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_macro_rules_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1760), + [anon_sym_LBRACE] = ACTIONS(1760), + [anon_sym_RBRACE] = ACTIONS(1760), + [anon_sym_LBRACK] = ACTIONS(1760), + [anon_sym_STAR] = ACTIONS(1760), + [anon_sym_u8] = ACTIONS(1762), + [anon_sym_i8] = ACTIONS(1762), + [anon_sym_u16] = ACTIONS(1762), + [anon_sym_i16] = ACTIONS(1762), + [anon_sym_u32] = ACTIONS(1762), + [anon_sym_i32] = ACTIONS(1762), + [anon_sym_u64] = ACTIONS(1762), + [anon_sym_i64] = ACTIONS(1762), + [anon_sym_u128] = ACTIONS(1762), + [anon_sym_i128] = ACTIONS(1762), + [anon_sym_isize] = ACTIONS(1762), + [anon_sym_usize] = ACTIONS(1762), + [anon_sym_f32] = ACTIONS(1762), + [anon_sym_f64] = ACTIONS(1762), + [anon_sym_bool] = ACTIONS(1762), + [anon_sym_str] = ACTIONS(1762), + [anon_sym_char] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1762), + [anon_sym_async] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1762), + [anon_sym_const] = ACTIONS(1762), + [anon_sym_continue] = ACTIONS(1762), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_enum] = ACTIONS(1762), + [anon_sym_fn] = ACTIONS(1762), + [anon_sym_for] = ACTIONS(1762), + [anon_sym_if] = ACTIONS(1762), + [anon_sym_impl] = ACTIONS(1762), + [anon_sym_let] = ACTIONS(1762), + [anon_sym_loop] = ACTIONS(1762), + [anon_sym_match] = ACTIONS(1762), + [anon_sym_mod] = ACTIONS(1762), + [anon_sym_pub] = ACTIONS(1762), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_static] = ACTIONS(1762), + [anon_sym_struct] = ACTIONS(1762), + [anon_sym_trait] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(1762), + [anon_sym_union] = ACTIONS(1762), + [anon_sym_unsafe] = ACTIONS(1762), + [anon_sym_use] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1760), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1760), + [anon_sym_COLON_COLON] = ACTIONS(1760), + [anon_sym_AMP] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PIPE] = ACTIONS(1760), + [anon_sym_move] = ACTIONS(1762), + [sym_integer_literal] = ACTIONS(1760), + [aux_sym_string_literal_token1] = ACTIONS(1760), + [sym_char_literal] = ACTIONS(1760), + [anon_sym_true] = ACTIONS(1762), + [anon_sym_false] = ACTIONS(1762), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1768), - [sym_super] = ACTIONS(1768), - [sym_crate] = ACTIONS(1768), - [sym_metavariable] = ACTIONS(1766), - [sym_raw_string_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), + [sym_self] = ACTIONS(1762), + [sym_super] = ACTIONS(1762), + [sym_crate] = ACTIONS(1762), + [sym_metavariable] = ACTIONS(1760), + [sym_raw_string_literal] = ACTIONS(1760), + [sym_float_literal] = ACTIONS(1760), [sym_block_comment] = ACTIONS(3), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(391), - [sym_identifier] = ACTIONS(393), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_macro_rules_BANG] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(393), - [anon_sym_i8] = ACTIONS(393), - [anon_sym_u16] = ACTIONS(393), - [anon_sym_i16] = ACTIONS(393), - [anon_sym_u32] = ACTIONS(393), - [anon_sym_i32] = ACTIONS(393), - [anon_sym_u64] = ACTIONS(393), - [anon_sym_i64] = ACTIONS(393), - [anon_sym_u128] = ACTIONS(393), - [anon_sym_i128] = ACTIONS(393), - [anon_sym_isize] = ACTIONS(393), - [anon_sym_usize] = ACTIONS(393), - [anon_sym_f32] = ACTIONS(393), - [anon_sym_f64] = ACTIONS(393), - [anon_sym_bool] = ACTIONS(393), - [anon_sym_str] = ACTIONS(393), - [anon_sym_char] = ACTIONS(393), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_async] = ACTIONS(393), - [anon_sym_break] = ACTIONS(393), - [anon_sym_const] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(393), - [anon_sym_default] = ACTIONS(393), - [anon_sym_enum] = ACTIONS(393), - [anon_sym_fn] = ACTIONS(393), - [anon_sym_for] = ACTIONS(393), - [anon_sym_if] = ACTIONS(393), - [anon_sym_impl] = ACTIONS(393), - [anon_sym_let] = ACTIONS(393), - [anon_sym_loop] = ACTIONS(393), - [anon_sym_match] = ACTIONS(393), - [anon_sym_mod] = ACTIONS(393), - [anon_sym_pub] = ACTIONS(393), - [anon_sym_return] = ACTIONS(393), - [anon_sym_static] = ACTIONS(393), - [anon_sym_struct] = ACTIONS(393), - [anon_sym_trait] = ACTIONS(393), - [anon_sym_type] = ACTIONS(393), - [anon_sym_union] = ACTIONS(393), - [anon_sym_unsafe] = ACTIONS(393), - [anon_sym_use] = ACTIONS(393), - [anon_sym_while] = ACTIONS(393), - [anon_sym_POUND] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_extern] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(391), - [anon_sym_move] = ACTIONS(393), - [sym_integer_literal] = ACTIONS(391), - [aux_sym_string_literal_token1] = ACTIONS(391), - [sym_char_literal] = ACTIONS(391), - [anon_sym_true] = ACTIONS(393), - [anon_sym_false] = ACTIONS(393), + [ts_builtin_sym_end] = ACTIONS(1764), + [sym_identifier] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1764), + [anon_sym_macro_rules_BANG] = ACTIONS(1764), + [anon_sym_LPAREN] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_RBRACE] = ACTIONS(1764), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1764), + [anon_sym_u8] = ACTIONS(1766), + [anon_sym_i8] = ACTIONS(1766), + [anon_sym_u16] = ACTIONS(1766), + [anon_sym_i16] = ACTIONS(1766), + [anon_sym_u32] = ACTIONS(1766), + [anon_sym_i32] = ACTIONS(1766), + [anon_sym_u64] = ACTIONS(1766), + [anon_sym_i64] = ACTIONS(1766), + [anon_sym_u128] = ACTIONS(1766), + [anon_sym_i128] = ACTIONS(1766), + [anon_sym_isize] = ACTIONS(1766), + [anon_sym_usize] = ACTIONS(1766), + [anon_sym_f32] = ACTIONS(1766), + [anon_sym_f64] = ACTIONS(1766), + [anon_sym_bool] = ACTIONS(1766), + [anon_sym_str] = ACTIONS(1766), + [anon_sym_char] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1766), + [anon_sym_async] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_const] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_fn] = ACTIONS(1766), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_impl] = ACTIONS(1766), + [anon_sym_let] = ACTIONS(1766), + [anon_sym_loop] = ACTIONS(1766), + [anon_sym_match] = ACTIONS(1766), + [anon_sym_mod] = ACTIONS(1766), + [anon_sym_pub] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_struct] = ACTIONS(1766), + [anon_sym_trait] = ACTIONS(1766), + [anon_sym_type] = ACTIONS(1766), + [anon_sym_union] = ACTIONS(1766), + [anon_sym_unsafe] = ACTIONS(1766), + [anon_sym_use] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1764), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_AMP] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1764), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_move] = ACTIONS(1766), + [sym_integer_literal] = ACTIONS(1764), + [aux_sym_string_literal_token1] = ACTIONS(1764), + [sym_char_literal] = ACTIONS(1764), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(393), - [sym_super] = ACTIONS(393), - [sym_crate] = ACTIONS(393), - [sym_metavariable] = ACTIONS(391), - [sym_raw_string_literal] = ACTIONS(391), - [sym_float_literal] = ACTIONS(391), + [sym_self] = ACTIONS(1766), + [sym_super] = ACTIONS(1766), + [sym_crate] = ACTIONS(1766), + [sym_metavariable] = ACTIONS(1764), + [sym_raw_string_literal] = ACTIONS(1764), + [sym_float_literal] = ACTIONS(1764), [sym_block_comment] = ACTIONS(3), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1772), - [anon_sym_SEMI] = ACTIONS(1770), - [anon_sym_macro_rules_BANG] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_u8] = ACTIONS(1772), - [anon_sym_i8] = ACTIONS(1772), - [anon_sym_u16] = ACTIONS(1772), - [anon_sym_i16] = ACTIONS(1772), - [anon_sym_u32] = ACTIONS(1772), - [anon_sym_i32] = ACTIONS(1772), - [anon_sym_u64] = ACTIONS(1772), - [anon_sym_i64] = ACTIONS(1772), - [anon_sym_u128] = ACTIONS(1772), - [anon_sym_i128] = ACTIONS(1772), - [anon_sym_isize] = ACTIONS(1772), - [anon_sym_usize] = ACTIONS(1772), - [anon_sym_f32] = ACTIONS(1772), - [anon_sym_f64] = ACTIONS(1772), - [anon_sym_bool] = ACTIONS(1772), - [anon_sym_str] = ACTIONS(1772), - [anon_sym_char] = ACTIONS(1772), - [anon_sym_SQUOTE] = ACTIONS(1772), - [anon_sym_async] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_const] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_enum] = ACTIONS(1772), - [anon_sym_fn] = ACTIONS(1772), - [anon_sym_for] = ACTIONS(1772), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_impl] = ACTIONS(1772), - [anon_sym_let] = ACTIONS(1772), - [anon_sym_loop] = ACTIONS(1772), - [anon_sym_match] = ACTIONS(1772), - [anon_sym_mod] = ACTIONS(1772), - [anon_sym_pub] = ACTIONS(1772), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_struct] = ACTIONS(1772), - [anon_sym_trait] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(1772), - [anon_sym_union] = ACTIONS(1772), - [anon_sym_unsafe] = ACTIONS(1772), - [anon_sym_use] = ACTIONS(1772), - [anon_sym_while] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_LT] = ACTIONS(1770), - [anon_sym_COLON_COLON] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_DOT_DOT] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(1770), - [anon_sym_move] = ACTIONS(1772), - [sym_integer_literal] = ACTIONS(1770), - [aux_sym_string_literal_token1] = ACTIONS(1770), - [sym_char_literal] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), + [ts_builtin_sym_end] = ACTIONS(1768), + [sym_identifier] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_macro_rules_BANG] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_LBRACE] = ACTIONS(1768), + [anon_sym_RBRACE] = ACTIONS(1768), + [anon_sym_LBRACK] = ACTIONS(1768), + [anon_sym_STAR] = ACTIONS(1768), + [anon_sym_u8] = ACTIONS(1770), + [anon_sym_i8] = ACTIONS(1770), + [anon_sym_u16] = ACTIONS(1770), + [anon_sym_i16] = ACTIONS(1770), + [anon_sym_u32] = ACTIONS(1770), + [anon_sym_i32] = ACTIONS(1770), + [anon_sym_u64] = ACTIONS(1770), + [anon_sym_i64] = ACTIONS(1770), + [anon_sym_u128] = ACTIONS(1770), + [anon_sym_i128] = ACTIONS(1770), + [anon_sym_isize] = ACTIONS(1770), + [anon_sym_usize] = ACTIONS(1770), + [anon_sym_f32] = ACTIONS(1770), + [anon_sym_f64] = ACTIONS(1770), + [anon_sym_bool] = ACTIONS(1770), + [anon_sym_str] = ACTIONS(1770), + [anon_sym_char] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1770), + [anon_sym_async] = ACTIONS(1770), + [anon_sym_break] = ACTIONS(1770), + [anon_sym_const] = ACTIONS(1770), + [anon_sym_continue] = ACTIONS(1770), + [anon_sym_default] = ACTIONS(1770), + [anon_sym_enum] = ACTIONS(1770), + [anon_sym_fn] = ACTIONS(1770), + [anon_sym_for] = ACTIONS(1770), + [anon_sym_if] = ACTIONS(1770), + [anon_sym_impl] = ACTIONS(1770), + [anon_sym_let] = ACTIONS(1770), + [anon_sym_loop] = ACTIONS(1770), + [anon_sym_match] = ACTIONS(1770), + [anon_sym_mod] = ACTIONS(1770), + [anon_sym_pub] = ACTIONS(1770), + [anon_sym_return] = ACTIONS(1770), + [anon_sym_static] = ACTIONS(1770), + [anon_sym_struct] = ACTIONS(1770), + [anon_sym_trait] = ACTIONS(1770), + [anon_sym_type] = ACTIONS(1770), + [anon_sym_union] = ACTIONS(1770), + [anon_sym_unsafe] = ACTIONS(1770), + [anon_sym_use] = ACTIONS(1770), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_BANG] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1768), + [anon_sym_COLON_COLON] = ACTIONS(1768), + [anon_sym_AMP] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1768), + [anon_sym_PIPE] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1770), + [sym_integer_literal] = ACTIONS(1768), + [aux_sym_string_literal_token1] = ACTIONS(1768), + [sym_char_literal] = ACTIONS(1768), + [anon_sym_true] = ACTIONS(1770), + [anon_sym_false] = ACTIONS(1770), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1772), - [sym_super] = ACTIONS(1772), - [sym_crate] = ACTIONS(1772), - [sym_metavariable] = ACTIONS(1770), - [sym_raw_string_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), + [sym_self] = ACTIONS(1770), + [sym_super] = ACTIONS(1770), + [sym_crate] = ACTIONS(1770), + [sym_metavariable] = ACTIONS(1768), + [sym_raw_string_literal] = ACTIONS(1768), + [sym_float_literal] = ACTIONS(1768), [sym_block_comment] = ACTIONS(3), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(395), - [sym_identifier] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_macro_rules_BANG] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(397), - [anon_sym_i8] = ACTIONS(397), - [anon_sym_u16] = ACTIONS(397), - [anon_sym_i16] = ACTIONS(397), - [anon_sym_u32] = ACTIONS(397), - [anon_sym_i32] = ACTIONS(397), - [anon_sym_u64] = ACTIONS(397), - [anon_sym_i64] = ACTIONS(397), - [anon_sym_u128] = ACTIONS(397), - [anon_sym_i128] = ACTIONS(397), - [anon_sym_isize] = ACTIONS(397), - [anon_sym_usize] = ACTIONS(397), - [anon_sym_f32] = ACTIONS(397), - [anon_sym_f64] = ACTIONS(397), - [anon_sym_bool] = ACTIONS(397), - [anon_sym_str] = ACTIONS(397), - [anon_sym_char] = ACTIONS(397), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_async] = ACTIONS(397), - [anon_sym_break] = ACTIONS(397), - [anon_sym_const] = ACTIONS(397), - [anon_sym_continue] = ACTIONS(397), - [anon_sym_default] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(397), - [anon_sym_fn] = ACTIONS(397), - [anon_sym_for] = ACTIONS(397), - [anon_sym_if] = ACTIONS(397), - [anon_sym_impl] = ACTIONS(397), - [anon_sym_let] = ACTIONS(397), - [anon_sym_loop] = ACTIONS(397), - [anon_sym_match] = ACTIONS(397), - [anon_sym_mod] = ACTIONS(397), - [anon_sym_pub] = ACTIONS(397), - [anon_sym_return] = ACTIONS(397), - [anon_sym_static] = ACTIONS(397), - [anon_sym_struct] = ACTIONS(397), - [anon_sym_trait] = ACTIONS(397), - [anon_sym_type] = ACTIONS(397), - [anon_sym_union] = ACTIONS(397), - [anon_sym_unsafe] = ACTIONS(397), - [anon_sym_use] = ACTIONS(397), - [anon_sym_while] = ACTIONS(397), - [anon_sym_POUND] = ACTIONS(395), - [anon_sym_BANG] = ACTIONS(395), - [anon_sym_extern] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(395), - [anon_sym_AMP] = ACTIONS(395), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(395), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_move] = ACTIONS(397), - [sym_integer_literal] = ACTIONS(395), - [aux_sym_string_literal_token1] = ACTIONS(395), - [sym_char_literal] = ACTIONS(395), - [anon_sym_true] = ACTIONS(397), - [anon_sym_false] = ACTIONS(397), + [ts_builtin_sym_end] = ACTIONS(1772), + [sym_identifier] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1772), + [anon_sym_macro_rules_BANG] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_u8] = ACTIONS(1774), + [anon_sym_i8] = ACTIONS(1774), + [anon_sym_u16] = ACTIONS(1774), + [anon_sym_i16] = ACTIONS(1774), + [anon_sym_u32] = ACTIONS(1774), + [anon_sym_i32] = ACTIONS(1774), + [anon_sym_u64] = ACTIONS(1774), + [anon_sym_i64] = ACTIONS(1774), + [anon_sym_u128] = ACTIONS(1774), + [anon_sym_i128] = ACTIONS(1774), + [anon_sym_isize] = ACTIONS(1774), + [anon_sym_usize] = ACTIONS(1774), + [anon_sym_f32] = ACTIONS(1774), + [anon_sym_f64] = ACTIONS(1774), + [anon_sym_bool] = ACTIONS(1774), + [anon_sym_str] = ACTIONS(1774), + [anon_sym_char] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1774), + [anon_sym_async] = ACTIONS(1774), + [anon_sym_break] = ACTIONS(1774), + [anon_sym_const] = ACTIONS(1774), + [anon_sym_continue] = ACTIONS(1774), + [anon_sym_default] = ACTIONS(1774), + [anon_sym_enum] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1774), + [anon_sym_for] = ACTIONS(1774), + [anon_sym_if] = ACTIONS(1774), + [anon_sym_impl] = ACTIONS(1774), + [anon_sym_let] = ACTIONS(1774), + [anon_sym_loop] = ACTIONS(1774), + [anon_sym_match] = ACTIONS(1774), + [anon_sym_mod] = ACTIONS(1774), + [anon_sym_pub] = ACTIONS(1774), + [anon_sym_return] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1774), + [anon_sym_struct] = ACTIONS(1774), + [anon_sym_trait] = ACTIONS(1774), + [anon_sym_type] = ACTIONS(1774), + [anon_sym_union] = ACTIONS(1774), + [anon_sym_unsafe] = ACTIONS(1774), + [anon_sym_use] = ACTIONS(1774), + [anon_sym_while] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_BANG] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_COLON_COLON] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1772), + [anon_sym_move] = ACTIONS(1774), + [sym_integer_literal] = ACTIONS(1772), + [aux_sym_string_literal_token1] = ACTIONS(1772), + [sym_char_literal] = ACTIONS(1772), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_crate] = ACTIONS(397), - [sym_metavariable] = ACTIONS(395), - [sym_raw_string_literal] = ACTIONS(395), - [sym_float_literal] = ACTIONS(395), + [sym_self] = ACTIONS(1774), + [sym_super] = ACTIONS(1774), + [sym_crate] = ACTIONS(1774), + [sym_metavariable] = ACTIONS(1772), + [sym_raw_string_literal] = ACTIONS(1772), + [sym_float_literal] = ACTIONS(1772), [sym_block_comment] = ACTIONS(3), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1776), - [anon_sym_SEMI] = ACTIONS(1774), - [anon_sym_macro_rules_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_RBRACE] = ACTIONS(1774), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_u8] = ACTIONS(1776), - [anon_sym_i8] = ACTIONS(1776), - [anon_sym_u16] = ACTIONS(1776), - [anon_sym_i16] = ACTIONS(1776), - [anon_sym_u32] = ACTIONS(1776), - [anon_sym_i32] = ACTIONS(1776), - [anon_sym_u64] = ACTIONS(1776), - [anon_sym_i64] = ACTIONS(1776), - [anon_sym_u128] = ACTIONS(1776), - [anon_sym_i128] = ACTIONS(1776), - [anon_sym_isize] = ACTIONS(1776), - [anon_sym_usize] = ACTIONS(1776), - [anon_sym_f32] = ACTIONS(1776), - [anon_sym_f64] = ACTIONS(1776), - [anon_sym_bool] = ACTIONS(1776), - [anon_sym_str] = ACTIONS(1776), - [anon_sym_char] = ACTIONS(1776), - [anon_sym_SQUOTE] = ACTIONS(1776), - [anon_sym_async] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_const] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_enum] = ACTIONS(1776), - [anon_sym_fn] = ACTIONS(1776), - [anon_sym_for] = ACTIONS(1776), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_impl] = ACTIONS(1776), - [anon_sym_let] = ACTIONS(1776), - [anon_sym_loop] = ACTIONS(1776), - [anon_sym_match] = ACTIONS(1776), - [anon_sym_mod] = ACTIONS(1776), - [anon_sym_pub] = ACTIONS(1776), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_struct] = ACTIONS(1776), - [anon_sym_trait] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1776), - [anon_sym_union] = ACTIONS(1776), - [anon_sym_unsafe] = ACTIONS(1776), - [anon_sym_use] = ACTIONS(1776), - [anon_sym_while] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1774), - [anon_sym_COLON_COLON] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1774), - [anon_sym_DOT_DOT] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PIPE] = ACTIONS(1774), - [anon_sym_move] = ACTIONS(1776), - [sym_integer_literal] = ACTIONS(1774), - [aux_sym_string_literal_token1] = ACTIONS(1774), - [sym_char_literal] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1776), - [sym_super] = ACTIONS(1776), - [sym_crate] = ACTIONS(1776), - [sym_metavariable] = ACTIONS(1774), - [sym_raw_string_literal] = ACTIONS(1774), - [sym_float_literal] = ACTIONS(1774), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1776), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [426] = { @@ -47422,79 +47425,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [430] = { - [sym__token_pattern] = STATE(399), - [sym_token_tree_pattern] = STATE(399), - [sym_token_binding_pattern] = STATE(399), - [sym_token_repetition_pattern] = STATE(399), - [sym__literal] = STATE(399), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1794), - [anon_sym_i8] = ACTIONS(1794), - [anon_sym_u16] = ACTIONS(1794), - [anon_sym_i16] = ACTIONS(1794), - [anon_sym_u32] = ACTIONS(1794), - [anon_sym_i32] = ACTIONS(1794), - [anon_sym_u64] = ACTIONS(1794), - [anon_sym_i64] = ACTIONS(1794), - [anon_sym_u128] = ACTIONS(1794), - [anon_sym_i128] = ACTIONS(1794), - [anon_sym_isize] = ACTIONS(1794), - [anon_sym_usize] = ACTIONS(1794), - [anon_sym_f32] = ACTIONS(1794), - [anon_sym_f64] = ACTIONS(1794), - [anon_sym_bool] = ACTIONS(1794), - [anon_sym_str] = ACTIONS(1794), - [anon_sym_char] = ACTIONS(1794), - [aux_sym__non_special_token_token1] = ACTIONS(1794), - [anon_sym_SQUOTE] = ACTIONS(1794), - [anon_sym_as] = ACTIONS(1794), - [anon_sym_async] = ACTIONS(1794), - [anon_sym_await] = ACTIONS(1794), - [anon_sym_break] = ACTIONS(1794), - [anon_sym_const] = ACTIONS(1794), - [anon_sym_continue] = ACTIONS(1794), - [anon_sym_default] = ACTIONS(1794), - [anon_sym_enum] = ACTIONS(1794), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_for] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1794), - [anon_sym_impl] = ACTIONS(1794), - [anon_sym_let] = ACTIONS(1794), - [anon_sym_loop] = ACTIONS(1794), - [anon_sym_match] = ACTIONS(1794), - [anon_sym_mod] = ACTIONS(1794), - [anon_sym_pub] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1794), - [anon_sym_static] = ACTIONS(1794), - [anon_sym_struct] = ACTIONS(1794), - [anon_sym_trait] = ACTIONS(1794), - [anon_sym_type] = ACTIONS(1794), - [anon_sym_union] = ACTIONS(1794), - [anon_sym_unsafe] = ACTIONS(1794), - [anon_sym_use] = ACTIONS(1794), - [anon_sym_where] = ACTIONS(1794), - [anon_sym_while] = ACTIONS(1794), - [sym_mutable_specifier] = ACTIONS(1794), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1794), - [sym_super] = ACTIONS(1794), - [sym_crate] = ACTIONS(1794), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_SQUOTE] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_fn] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_impl] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_mod] = ACTIONS(1796), + [anon_sym_pub] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_trait] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_unsafe] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_move] = ACTIONS(1796), + [sym_integer_literal] = ACTIONS(1794), + [aux_sym_string_literal_token1] = ACTIONS(1794), + [sym_char_literal] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1794), + [sym_raw_string_literal] = ACTIONS(1794), + [sym_float_literal] = ACTIONS(1794), [sym_block_comment] = ACTIONS(3), }, [431] = { @@ -47650,82 +47653,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(387), - [sym_identifier] = ACTIONS(389), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_macro_rules_BANG] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(389), - [anon_sym_i8] = ACTIONS(389), - [anon_sym_u16] = ACTIONS(389), - [anon_sym_i16] = ACTIONS(389), - [anon_sym_u32] = ACTIONS(389), - [anon_sym_i32] = ACTIONS(389), - [anon_sym_u64] = ACTIONS(389), - [anon_sym_i64] = ACTIONS(389), - [anon_sym_u128] = ACTIONS(389), - [anon_sym_i128] = ACTIONS(389), - [anon_sym_isize] = ACTIONS(389), - [anon_sym_usize] = ACTIONS(389), - [anon_sym_f32] = ACTIONS(389), - [anon_sym_f64] = ACTIONS(389), - [anon_sym_bool] = ACTIONS(389), - [anon_sym_str] = ACTIONS(389), - [anon_sym_char] = ACTIONS(389), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_async] = ACTIONS(389), - [anon_sym_break] = ACTIONS(389), - [anon_sym_const] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_enum] = ACTIONS(389), - [anon_sym_fn] = ACTIONS(389), - [anon_sym_for] = ACTIONS(389), - [anon_sym_if] = ACTIONS(389), - [anon_sym_impl] = ACTIONS(389), - [anon_sym_let] = ACTIONS(389), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_match] = ACTIONS(389), - [anon_sym_mod] = ACTIONS(389), - [anon_sym_pub] = ACTIONS(389), - [anon_sym_return] = ACTIONS(389), - [anon_sym_static] = ACTIONS(389), - [anon_sym_struct] = ACTIONS(389), - [anon_sym_trait] = ACTIONS(389), - [anon_sym_type] = ACTIONS(389), - [anon_sym_union] = ACTIONS(389), - [anon_sym_unsafe] = ACTIONS(389), - [anon_sym_use] = ACTIONS(389), - [anon_sym_while] = ACTIONS(389), - [anon_sym_POUND] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_extern] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_move] = ACTIONS(389), - [sym_integer_literal] = ACTIONS(387), - [aux_sym_string_literal_token1] = ACTIONS(387), - [sym_char_literal] = ACTIONS(387), - [anon_sym_true] = ACTIONS(389), - [anon_sym_false] = ACTIONS(389), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(389), - [sym_super] = ACTIONS(389), - [sym_crate] = ACTIONS(389), - [sym_metavariable] = ACTIONS(387), - [sym_raw_string_literal] = ACTIONS(387), - [sym_float_literal] = ACTIONS(387), - [sym_block_comment] = ACTIONS(3), - }, - [434] = { [ts_builtin_sym_end] = ACTIONS(1806), [sym_identifier] = ACTIONS(1808), [anon_sym_SEMI] = ACTIONS(1806), @@ -47801,7 +47728,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1806), [sym_block_comment] = ACTIONS(3), }, - [435] = { + [434] = { [ts_builtin_sym_end] = ACTIONS(1810), [sym_identifier] = ACTIONS(1812), [anon_sym_SEMI] = ACTIONS(1810), @@ -47877,7 +47804,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1810), [sym_block_comment] = ACTIONS(3), }, - [436] = { + [435] = { [ts_builtin_sym_end] = ACTIONS(1814), [sym_identifier] = ACTIONS(1816), [anon_sym_SEMI] = ACTIONS(1814), @@ -47953,6 +47880,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1814), [sym_block_comment] = ACTIONS(3), }, + [436] = { + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_RBRACK] = ACTIONS(1055), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, [437] = { [ts_builtin_sym_end] = ACTIONS(1818), [sym_identifier] = ACTIONS(1820), @@ -48410,248 +48413,243 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [443] = { - [sym__token_pattern] = STATE(297), - [sym_token_tree_pattern] = STATE(297), - [sym_token_binding_pattern] = STATE(297), - [sym_token_repetition_pattern] = STATE(297), - [sym__literal] = STATE(297), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_RBRACK] = ACTIONS(1844), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1842), - [anon_sym_i8] = ACTIONS(1842), - [anon_sym_u16] = ACTIONS(1842), - [anon_sym_i16] = ACTIONS(1842), - [anon_sym_u32] = ACTIONS(1842), - [anon_sym_i32] = ACTIONS(1842), - [anon_sym_u64] = ACTIONS(1842), - [anon_sym_i64] = ACTIONS(1842), - [anon_sym_u128] = ACTIONS(1842), - [anon_sym_i128] = ACTIONS(1842), - [anon_sym_isize] = ACTIONS(1842), - [anon_sym_usize] = ACTIONS(1842), - [anon_sym_f32] = ACTIONS(1842), - [anon_sym_f64] = ACTIONS(1842), - [anon_sym_bool] = ACTIONS(1842), - [anon_sym_str] = ACTIONS(1842), - [anon_sym_char] = ACTIONS(1842), - [aux_sym__non_special_token_token1] = ACTIONS(1842), - [anon_sym_SQUOTE] = ACTIONS(1842), - [anon_sym_as] = ACTIONS(1842), - [anon_sym_async] = ACTIONS(1842), - [anon_sym_await] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1842), - [anon_sym_const] = ACTIONS(1842), - [anon_sym_continue] = ACTIONS(1842), - [anon_sym_default] = ACTIONS(1842), - [anon_sym_enum] = ACTIONS(1842), - [anon_sym_fn] = ACTIONS(1842), - [anon_sym_for] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1842), - [anon_sym_impl] = ACTIONS(1842), - [anon_sym_let] = ACTIONS(1842), - [anon_sym_loop] = ACTIONS(1842), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_mod] = ACTIONS(1842), - [anon_sym_pub] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_static] = ACTIONS(1842), - [anon_sym_struct] = ACTIONS(1842), - [anon_sym_trait] = ACTIONS(1842), - [anon_sym_type] = ACTIONS(1842), - [anon_sym_union] = ACTIONS(1842), - [anon_sym_unsafe] = ACTIONS(1842), - [anon_sym_use] = ACTIONS(1842), - [anon_sym_where] = ACTIONS(1842), - [anon_sym_while] = ACTIONS(1842), - [sym_mutable_specifier] = ACTIONS(1842), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1842), - [sym_super] = ACTIONS(1842), - [sym_crate] = ACTIONS(1842), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_macro_rules_BANG] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1844), + [anon_sym_i8] = ACTIONS(1844), + [anon_sym_u16] = ACTIONS(1844), + [anon_sym_i16] = ACTIONS(1844), + [anon_sym_u32] = ACTIONS(1844), + [anon_sym_i32] = ACTIONS(1844), + [anon_sym_u64] = ACTIONS(1844), + [anon_sym_i64] = ACTIONS(1844), + [anon_sym_u128] = ACTIONS(1844), + [anon_sym_i128] = ACTIONS(1844), + [anon_sym_isize] = ACTIONS(1844), + [anon_sym_usize] = ACTIONS(1844), + [anon_sym_f32] = ACTIONS(1844), + [anon_sym_f64] = ACTIONS(1844), + [anon_sym_bool] = ACTIONS(1844), + [anon_sym_str] = ACTIONS(1844), + [anon_sym_char] = ACTIONS(1844), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_fn] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_impl] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_mod] = ACTIONS(1844), + [anon_sym_pub] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_unsafe] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_COLON_COLON] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_move] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1842), + [aux_sym_string_literal_token1] = ACTIONS(1842), + [sym_char_literal] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_crate] = ACTIONS(1844), + [sym_metavariable] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1842), + [sym_float_literal] = ACTIONS(1842), [sym_block_comment] = ACTIONS(3), }, [444] = { - [sym__token_pattern] = STATE(288), - [sym_token_tree_pattern] = STATE(288), - [sym_token_binding_pattern] = STATE(288), - [sym_token_repetition_pattern] = STATE(288), - [sym__literal] = STATE(288), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), - [anon_sym_u8] = ACTIONS(1846), - [anon_sym_i8] = ACTIONS(1846), - [anon_sym_u16] = ACTIONS(1846), - [anon_sym_i16] = ACTIONS(1846), - [anon_sym_u32] = ACTIONS(1846), - [anon_sym_i32] = ACTIONS(1846), - [anon_sym_u64] = ACTIONS(1846), - [anon_sym_i64] = ACTIONS(1846), - [anon_sym_u128] = ACTIONS(1846), - [anon_sym_i128] = ACTIONS(1846), - [anon_sym_isize] = ACTIONS(1846), - [anon_sym_usize] = ACTIONS(1846), - [anon_sym_f32] = ACTIONS(1846), - [anon_sym_f64] = ACTIONS(1846), - [anon_sym_bool] = ACTIONS(1846), - [anon_sym_str] = ACTIONS(1846), - [anon_sym_char] = ACTIONS(1846), - [aux_sym__non_special_token_token1] = ACTIONS(1846), - [anon_sym_SQUOTE] = ACTIONS(1846), - [anon_sym_as] = ACTIONS(1846), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_await] = ACTIONS(1846), - [anon_sym_break] = ACTIONS(1846), - [anon_sym_const] = ACTIONS(1846), - [anon_sym_continue] = ACTIONS(1846), - [anon_sym_default] = ACTIONS(1846), - [anon_sym_enum] = ACTIONS(1846), - [anon_sym_fn] = ACTIONS(1846), - [anon_sym_for] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1846), - [anon_sym_impl] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1846), - [anon_sym_loop] = ACTIONS(1846), - [anon_sym_match] = ACTIONS(1846), - [anon_sym_mod] = ACTIONS(1846), - [anon_sym_pub] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1846), - [anon_sym_static] = ACTIONS(1846), - [anon_sym_struct] = ACTIONS(1846), - [anon_sym_trait] = ACTIONS(1846), - [anon_sym_type] = ACTIONS(1846), - [anon_sym_union] = ACTIONS(1846), - [anon_sym_unsafe] = ACTIONS(1846), - [anon_sym_use] = ACTIONS(1846), - [anon_sym_where] = ACTIONS(1846), - [anon_sym_while] = ACTIONS(1846), - [sym_mutable_specifier] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym__token_pattern] = STATE(216), + [sym_token_tree_pattern] = STATE(216), + [sym_token_binding_pattern] = STATE(216), + [sym_token_repetition_pattern] = STATE(216), + [sym__literal] = STATE(216), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_pattern_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(1049), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1055), + [anon_sym_LBRACE] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(1057), + [anon_sym_DOLLAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [aux_sym__non_special_token_token1] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1846), - [sym_super] = ACTIONS(1846), - [sym_crate] = ACTIONS(1846), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1067), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_identifier] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1848), - [anon_sym_macro_rules_BANG] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_u8] = ACTIONS(1850), - [anon_sym_i8] = ACTIONS(1850), - [anon_sym_u16] = ACTIONS(1850), - [anon_sym_i16] = ACTIONS(1850), - [anon_sym_u32] = ACTIONS(1850), - [anon_sym_i32] = ACTIONS(1850), - [anon_sym_u64] = ACTIONS(1850), - [anon_sym_i64] = ACTIONS(1850), - [anon_sym_u128] = ACTIONS(1850), - [anon_sym_i128] = ACTIONS(1850), - [anon_sym_isize] = ACTIONS(1850), - [anon_sym_usize] = ACTIONS(1850), - [anon_sym_f32] = ACTIONS(1850), - [anon_sym_f64] = ACTIONS(1850), - [anon_sym_bool] = ACTIONS(1850), - [anon_sym_str] = ACTIONS(1850), - [anon_sym_char] = ACTIONS(1850), - [anon_sym_SQUOTE] = ACTIONS(1850), - [anon_sym_async] = ACTIONS(1850), - [anon_sym_break] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(1850), - [anon_sym_continue] = ACTIONS(1850), - [anon_sym_default] = ACTIONS(1850), - [anon_sym_enum] = ACTIONS(1850), - [anon_sym_fn] = ACTIONS(1850), - [anon_sym_for] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1850), - [anon_sym_impl] = ACTIONS(1850), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_loop] = ACTIONS(1850), - [anon_sym_match] = ACTIONS(1850), - [anon_sym_mod] = ACTIONS(1850), - [anon_sym_pub] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1850), - [anon_sym_static] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1850), - [anon_sym_trait] = ACTIONS(1850), - [anon_sym_type] = ACTIONS(1850), - [anon_sym_union] = ACTIONS(1850), - [anon_sym_unsafe] = ACTIONS(1850), - [anon_sym_use] = ACTIONS(1850), - [anon_sym_while] = ACTIONS(1850), - [anon_sym_POUND] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_COLON_COLON] = ACTIONS(1848), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_move] = ACTIONS(1850), - [sym_integer_literal] = ACTIONS(1848), - [aux_sym_string_literal_token1] = ACTIONS(1848), - [sym_char_literal] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_macro_rules_BANG] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1848), + [anon_sym_i8] = ACTIONS(1848), + [anon_sym_u16] = ACTIONS(1848), + [anon_sym_i16] = ACTIONS(1848), + [anon_sym_u32] = ACTIONS(1848), + [anon_sym_i32] = ACTIONS(1848), + [anon_sym_u64] = ACTIONS(1848), + [anon_sym_i64] = ACTIONS(1848), + [anon_sym_u128] = ACTIONS(1848), + [anon_sym_i128] = ACTIONS(1848), + [anon_sym_isize] = ACTIONS(1848), + [anon_sym_usize] = ACTIONS(1848), + [anon_sym_f32] = ACTIONS(1848), + [anon_sym_f64] = ACTIONS(1848), + [anon_sym_bool] = ACTIONS(1848), + [anon_sym_str] = ACTIONS(1848), + [anon_sym_char] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_fn] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_impl] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_mod] = ACTIONS(1848), + [anon_sym_pub] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_trait] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_unsafe] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_COLON_COLON] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_move] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1846), + [aux_sym_string_literal_token1] = ACTIONS(1846), + [sym_char_literal] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1850), - [sym_super] = ACTIONS(1850), - [sym_crate] = ACTIONS(1850), - [sym_metavariable] = ACTIONS(1848), - [sym_raw_string_literal] = ACTIONS(1848), - [sym_float_literal] = ACTIONS(1848), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1846), [sym_block_comment] = ACTIONS(3), }, [446] = { - [sym__token_pattern] = STATE(282), - [sym_token_tree_pattern] = STATE(282), - [sym_token_binding_pattern] = STATE(282), - [sym_token_repetition_pattern] = STATE(282), - [sym__literal] = STATE(282), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_pattern_repeat1] = STATE(282), + [ts_builtin_sym_end] = ACTIONS(1850), [sym_identifier] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1053), - [anon_sym_DOLLAR] = ACTIONS(1055), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_macro_rules_BANG] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), [anon_sym_u8] = ACTIONS(1852), [anon_sym_i8] = ACTIONS(1852), [anon_sym_u16] = ACTIONS(1852), @@ -48669,11 +48667,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1852), [anon_sym_str] = ACTIONS(1852), [anon_sym_char] = ACTIONS(1852), - [aux_sym__non_special_token_token1] = ACTIONS(1852), [anon_sym_SQUOTE] = ACTIONS(1852), - [anon_sym_as] = ACTIONS(1852), [anon_sym_async] = ACTIONS(1852), - [anon_sym_await] = ACTIONS(1852), [anon_sym_break] = ACTIONS(1852), [anon_sym_const] = ACTIONS(1852), [anon_sym_continue] = ACTIONS(1852), @@ -48696,21 +48691,29 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1852), [anon_sym_unsafe] = ACTIONS(1852), [anon_sym_use] = ACTIONS(1852), - [anon_sym_where] = ACTIONS(1852), [anon_sym_while] = ACTIONS(1852), - [sym_mutable_specifier] = ACTIONS(1852), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_move] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1852), [sym_super] = ACTIONS(1852), [sym_crate] = ACTIONS(1852), - [sym_metavariable] = ACTIONS(1063), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_metavariable] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), [sym_block_comment] = ACTIONS(3), }, [447] = { @@ -49322,35 +49325,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [455] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(485), - [sym_last_match_arm] = STATE(2253), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(485), + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(472), + [sym_last_match_arm] = STATE(2314), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(472), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_RBRACE] = ACTIONS(1890), @@ -49374,58 +49377,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [456] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(492), - [sym_last_match_arm] = STATE(2198), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(492), + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(468), + [sym_last_match_arm] = STATE(2395), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(468), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_RBRACE] = ACTIONS(1906), @@ -49449,58 +49452,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [457] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(477), - [sym_last_match_arm] = STATE(2398), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(477), + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(465), + [sym_last_match_arm] = STATE(2253), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(465), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_RBRACE] = ACTIONS(1908), @@ -49524,35 +49527,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [458] = { - [sym_token_tree] = STATE(489), - [sym_token_repetition] = STATE(489), - [sym__literal] = STATE(489), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(489), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), @@ -49606,31 +49609,31 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1910), [anon_sym_while] = ACTIONS(1910), [sym_mutable_specifier] = ACTIONS(1910), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1910), [sym_super] = ACTIONS(1910), [sym_crate] = ACTIONS(1910), [sym_metavariable] = ACTIONS(1922), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [459] = { - [sym_token_tree] = STATE(471), - [sym_token_repetition] = STATE(471), - [sym__literal] = STATE(471), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(471), + [sym_token_tree] = STATE(474), + [sym_token_repetition] = STATE(474), + [sym__literal] = STATE(474), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(474), [sym_identifier] = ACTIONS(1924), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1926), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1926), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1924), @@ -49680,32 +49683,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1924), [anon_sym_while] = ACTIONS(1924), [sym_mutable_specifier] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1924), [sym_super] = ACTIONS(1924), [sym_crate] = ACTIONS(1924), [sym_metavariable] = ACTIONS(1928), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [460] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), + [sym_token_tree] = STATE(458), + [sym_token_repetition] = STATE(458), + [sym__literal] = STATE(458), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(458), [sym_identifier] = ACTIONS(1930), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1932), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1930), [anon_sym_i8] = ACTIONS(1930), @@ -49754,402 +49757,106 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1930), [anon_sym_while] = ACTIONS(1930), [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1930), [sym_super] = ACTIONS(1930), [sym_crate] = ACTIONS(1930), [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [461] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [sym_token_tree] = STATE(467), + [sym_token_repetition] = STATE(467), + [sym__literal] = STATE(467), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(467), + [sym_identifier] = ACTIONS(1936), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1932), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [aux_sym__non_special_token_token1] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_as] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_await] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_where] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [sym_mutable_specifier] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1938), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [462] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1936), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [463] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [464] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [465] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [466] = { - [sym_token_tree] = STATE(476), - [sym_token_repetition] = STATE(476), - [sym__literal] = STATE(476), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(476), + [sym_token_tree] = STATE(466), + [sym_token_repetition] = STATE(466), + [sym__literal] = STATE(466), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(466), [sym_identifier] = ACTIONS(1940), [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1932), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1942), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1940), [anon_sym_i8] = ACTIONS(1940), @@ -50198,253 +49905,771 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1940), [anon_sym_while] = ACTIONS(1940), [sym_mutable_specifier] = ACTIONS(1940), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1940), [sym_super] = ACTIONS(1940), [sym_crate] = ACTIONS(1940), - [sym_metavariable] = ACTIONS(1944), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_metavariable] = ACTIONS(1942), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [467] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [463] = { + [sym_token_tree] = STATE(469), + [sym_token_repetition] = STATE(469), + [sym__literal] = STATE(469), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(469), + [sym_identifier] = ACTIONS(1944), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1938), + [anon_sym_RBRACK] = ACTIONS(1946), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [aux_sym__non_special_token_token1] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_as] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_await] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_where] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [sym_mutable_specifier] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1948), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [468] = { - [sym_token_tree] = STATE(460), - [sym_token_repetition] = STATE(460), - [sym__literal] = STATE(460), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(460), - [sym_identifier] = ACTIONS(1946), + [464] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1950), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1946), - [anon_sym_i8] = ACTIONS(1946), - [anon_sym_u16] = ACTIONS(1946), - [anon_sym_i16] = ACTIONS(1946), - [anon_sym_u32] = ACTIONS(1946), - [anon_sym_i32] = ACTIONS(1946), - [anon_sym_u64] = ACTIONS(1946), - [anon_sym_i64] = ACTIONS(1946), - [anon_sym_u128] = ACTIONS(1946), - [anon_sym_i128] = ACTIONS(1946), - [anon_sym_isize] = ACTIONS(1946), - [anon_sym_usize] = ACTIONS(1946), - [anon_sym_f32] = ACTIONS(1946), - [anon_sym_f64] = ACTIONS(1946), - [anon_sym_bool] = ACTIONS(1946), - [anon_sym_str] = ACTIONS(1946), - [anon_sym_char] = ACTIONS(1946), - [aux_sym__non_special_token_token1] = ACTIONS(1946), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1946), - [anon_sym_async] = ACTIONS(1946), - [anon_sym_await] = ACTIONS(1946), - [anon_sym_break] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_continue] = ACTIONS(1946), - [anon_sym_default] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_fn] = ACTIONS(1946), - [anon_sym_for] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1946), - [anon_sym_impl] = ACTIONS(1946), - [anon_sym_let] = ACTIONS(1946), - [anon_sym_loop] = ACTIONS(1946), - [anon_sym_match] = ACTIONS(1946), - [anon_sym_mod] = ACTIONS(1946), - [anon_sym_pub] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_trait] = ACTIONS(1946), - [anon_sym_type] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_unsafe] = ACTIONS(1946), - [anon_sym_use] = ACTIONS(1946), - [anon_sym_where] = ACTIONS(1946), - [anon_sym_while] = ACTIONS(1946), - [sym_mutable_specifier] = ACTIONS(1946), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1946), - [sym_super] = ACTIONS(1946), - [sym_crate] = ACTIONS(1946), - [sym_metavariable] = ACTIONS(1948), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [465] = { + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(493), + [sym_last_match_arm] = STATE(2190), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [466] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [467] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [468] = { + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(493), + [sym_last_match_arm] = STATE(2369), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [469] = { - [sym_token_tree] = STATE(462), - [sym_token_repetition] = STATE(462), - [sym__literal] = STATE(462), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(462), - [sym_identifier] = ACTIONS(1950), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1952), + [anon_sym_RBRACK] = ACTIONS(1950), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1950), - [anon_sym_i8] = ACTIONS(1950), - [anon_sym_u16] = ACTIONS(1950), - [anon_sym_i16] = ACTIONS(1950), - [anon_sym_u32] = ACTIONS(1950), - [anon_sym_i32] = ACTIONS(1950), - [anon_sym_u64] = ACTIONS(1950), - [anon_sym_i64] = ACTIONS(1950), - [anon_sym_u128] = ACTIONS(1950), - [anon_sym_i128] = ACTIONS(1950), - [anon_sym_isize] = ACTIONS(1950), - [anon_sym_usize] = ACTIONS(1950), - [anon_sym_f32] = ACTIONS(1950), - [anon_sym_f64] = ACTIONS(1950), - [anon_sym_bool] = ACTIONS(1950), - [anon_sym_str] = ACTIONS(1950), - [anon_sym_char] = ACTIONS(1950), - [aux_sym__non_special_token_token1] = ACTIONS(1950), - [anon_sym_SQUOTE] = ACTIONS(1950), - [anon_sym_as] = ACTIONS(1950), - [anon_sym_async] = ACTIONS(1950), - [anon_sym_await] = ACTIONS(1950), - [anon_sym_break] = ACTIONS(1950), - [anon_sym_const] = ACTIONS(1950), - [anon_sym_continue] = ACTIONS(1950), - [anon_sym_default] = ACTIONS(1950), - [anon_sym_enum] = ACTIONS(1950), - [anon_sym_fn] = ACTIONS(1950), - [anon_sym_for] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1950), - [anon_sym_impl] = ACTIONS(1950), - [anon_sym_let] = ACTIONS(1950), - [anon_sym_loop] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1950), - [anon_sym_mod] = ACTIONS(1950), - [anon_sym_pub] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1950), - [anon_sym_static] = ACTIONS(1950), - [anon_sym_struct] = ACTIONS(1950), - [anon_sym_trait] = ACTIONS(1950), - [anon_sym_type] = ACTIONS(1950), - [anon_sym_union] = ACTIONS(1950), - [anon_sym_unsafe] = ACTIONS(1950), - [anon_sym_use] = ACTIONS(1950), - [anon_sym_where] = ACTIONS(1950), - [anon_sym_while] = ACTIONS(1950), - [sym_mutable_specifier] = ACTIONS(1950), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1950), - [sym_super] = ACTIONS(1950), - [sym_crate] = ACTIONS(1950), - [sym_metavariable] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [470] = { - [sym_token_tree] = STATE(465), - [sym_token_repetition] = STATE(465), - [sym__literal] = STATE(465), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(465), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [471] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1954), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [472] = { + [sym_attribute_item] = STATE(502), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_arm] = STATE(493), + [sym_last_match_arm] = STATE(2389), + [sym_match_pattern] = STATE(2309), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(502), + [aux_sym_match_block_repeat1] = STATE(493), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [473] = { + [sym_token_tree] = STATE(490), + [sym_token_repetition] = STATE(490), + [sym__literal] = STATE(490), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(490), [sym_identifier] = ACTIONS(1956), [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1958), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1958), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1956), @@ -50494,180 +50719,254 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1956), [anon_sym_while] = ACTIONS(1956), [sym_mutable_specifier] = ACTIONS(1956), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1956), [sym_super] = ACTIONS(1956), [sym_crate] = ACTIONS(1956), [sym_metavariable] = ACTIONS(1960), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [471] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [474] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1962), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [472] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [475] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1954), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1964), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [473] = { - [sym_token_tree] = STATE(487), - [sym_token_repetition] = STATE(487), - [sym__literal] = STATE(487), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(487), + [476] = { + [sym_token_tree] = STATE(471), + [sym_token_repetition] = STATE(471), + [sym__literal] = STATE(471), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(471), + [sym_identifier] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1926), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [aux_sym__non_special_token_token1] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_as] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_await] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_where] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [sym_mutable_specifier] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1964), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [477] = { + [sym_token_tree] = STATE(482), + [sym_token_repetition] = STATE(482), + [sym__literal] = STATE(482), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(482), [sym_identifier] = ACTIONS(1966), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1918), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1968), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1966), [anon_sym_i8] = ACTIONS(1966), @@ -50716,475 +51015,253 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1966), [anon_sym_while] = ACTIONS(1966), [sym_mutable_specifier] = ACTIONS(1966), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1966), [sym_super] = ACTIONS(1966), [sym_crate] = ACTIONS(1966), - [sym_metavariable] = ACTIONS(1968), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [474] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [475] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_metavariable] = ACTIONS(1970), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [476] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [478] = { + [sym_token_tree] = STATE(475), + [sym_token_repetition] = STATE(475), + [sym__literal] = STATE(475), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(475), + [sym_identifier] = ACTIONS(1972), [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1926), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1932), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [aux_sym__non_special_token_token1] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_await] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_where] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [sym_mutable_specifier] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [477] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2373), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1974), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [478] = { - [sym_token_tree] = STATE(488), - [sym_token_repetition] = STATE(488), - [sym__literal] = STATE(488), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(488), - [sym_identifier] = ACTIONS(1970), + [479] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1952), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1970), - [anon_sym_i8] = ACTIONS(1970), - [anon_sym_u16] = ACTIONS(1970), - [anon_sym_i16] = ACTIONS(1970), - [anon_sym_u32] = ACTIONS(1970), - [anon_sym_i32] = ACTIONS(1970), - [anon_sym_u64] = ACTIONS(1970), - [anon_sym_i64] = ACTIONS(1970), - [anon_sym_u128] = ACTIONS(1970), - [anon_sym_i128] = ACTIONS(1970), - [anon_sym_isize] = ACTIONS(1970), - [anon_sym_usize] = ACTIONS(1970), - [anon_sym_f32] = ACTIONS(1970), - [anon_sym_f64] = ACTIONS(1970), - [anon_sym_bool] = ACTIONS(1970), - [anon_sym_str] = ACTIONS(1970), - [anon_sym_char] = ACTIONS(1970), - [aux_sym__non_special_token_token1] = ACTIONS(1970), - [anon_sym_SQUOTE] = ACTIONS(1970), - [anon_sym_as] = ACTIONS(1970), - [anon_sym_async] = ACTIONS(1970), - [anon_sym_await] = ACTIONS(1970), - [anon_sym_break] = ACTIONS(1970), - [anon_sym_const] = ACTIONS(1970), - [anon_sym_continue] = ACTIONS(1970), - [anon_sym_default] = ACTIONS(1970), - [anon_sym_enum] = ACTIONS(1970), - [anon_sym_fn] = ACTIONS(1970), - [anon_sym_for] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1970), - [anon_sym_impl] = ACTIONS(1970), - [anon_sym_let] = ACTIONS(1970), - [anon_sym_loop] = ACTIONS(1970), - [anon_sym_match] = ACTIONS(1970), - [anon_sym_mod] = ACTIONS(1970), - [anon_sym_pub] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1970), - [anon_sym_struct] = ACTIONS(1970), - [anon_sym_trait] = ACTIONS(1970), - [anon_sym_type] = ACTIONS(1970), - [anon_sym_union] = ACTIONS(1970), - [anon_sym_unsafe] = ACTIONS(1970), - [anon_sym_use] = ACTIONS(1970), - [anon_sym_where] = ACTIONS(1970), - [anon_sym_while] = ACTIONS(1970), - [sym_mutable_specifier] = ACTIONS(1970), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1970), - [sym_super] = ACTIONS(1970), - [sym_crate] = ACTIONS(1970), - [sym_metavariable] = ACTIONS(1972), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [479] = { - [sym_token_tree] = STATE(472), - [sym_token_repetition] = STATE(472), - [sym__literal] = STATE(472), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(472), - [sym_identifier] = ACTIONS(1974), + [480] = { + [sym_token_tree] = STATE(470), + [sym_token_repetition] = STATE(470), + [sym__literal] = STATE(470), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(470), + [sym_identifier] = ACTIONS(1976), [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1968), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1976), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1974), - [anon_sym_i8] = ACTIONS(1974), - [anon_sym_u16] = ACTIONS(1974), - [anon_sym_i16] = ACTIONS(1974), - [anon_sym_u32] = ACTIONS(1974), - [anon_sym_i32] = ACTIONS(1974), - [anon_sym_u64] = ACTIONS(1974), - [anon_sym_i64] = ACTIONS(1974), - [anon_sym_u128] = ACTIONS(1974), - [anon_sym_i128] = ACTIONS(1974), - [anon_sym_isize] = ACTIONS(1974), - [anon_sym_usize] = ACTIONS(1974), - [anon_sym_f32] = ACTIONS(1974), - [anon_sym_f64] = ACTIONS(1974), - [anon_sym_bool] = ACTIONS(1974), - [anon_sym_str] = ACTIONS(1974), - [anon_sym_char] = ACTIONS(1974), - [aux_sym__non_special_token_token1] = ACTIONS(1974), - [anon_sym_SQUOTE] = ACTIONS(1974), - [anon_sym_as] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_await] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [anon_sym_fn] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_impl] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_loop] = ACTIONS(1974), - [anon_sym_match] = ACTIONS(1974), - [anon_sym_mod] = ACTIONS(1974), - [anon_sym_pub] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_struct] = ACTIONS(1974), - [anon_sym_trait] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_union] = ACTIONS(1974), - [anon_sym_unsafe] = ACTIONS(1974), - [anon_sym_use] = ACTIONS(1974), - [anon_sym_where] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [sym_mutable_specifier] = ACTIONS(1974), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [aux_sym__non_special_token_token1] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_await] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_where] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [sym_mutable_specifier] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_crate] = ACTIONS(1974), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), [sym_metavariable] = ACTIONS(1978), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [480] = { - [sym_token_tree] = STATE(481), - [sym_token_repetition] = STATE(481), - [sym__literal] = STATE(481), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(481), + [481] = { + [sym_token_tree] = STATE(479), + [sym_token_repetition] = STATE(479), + [sym__literal] = STATE(479), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(479), [sym_identifier] = ACTIONS(1980), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1968), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1980), @@ -51222,118 +51299,118 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(1980), [anon_sym_match] = ACTIONS(1980), [anon_sym_mod] = ACTIONS(1980), - [anon_sym_pub] = ACTIONS(1980), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_struct] = ACTIONS(1980), - [anon_sym_trait] = ACTIONS(1980), - [anon_sym_type] = ACTIONS(1980), - [anon_sym_union] = ACTIONS(1980), - [anon_sym_unsafe] = ACTIONS(1980), - [anon_sym_use] = ACTIONS(1980), - [anon_sym_where] = ACTIONS(1980), - [anon_sym_while] = ACTIONS(1980), - [sym_mutable_specifier] = ACTIONS(1980), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1980), - [sym_super] = ACTIONS(1980), - [sym_crate] = ACTIONS(1980), - [sym_metavariable] = ACTIONS(1982), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [481] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_where] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [sym_mutable_specifier] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1982), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [482] = { - [sym_token_tree] = STATE(467), - [sym_token_repetition] = STATE(467), - [sym__literal] = STATE(467), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(467), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), + [sym_block_comment] = ACTIONS(3), + }, + [483] = { + [sym_token_tree] = STATE(464), + [sym_token_repetition] = STATE(464), + [sym__literal] = STATE(464), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(464), [sym_identifier] = ACTIONS(1984), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1946), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1958), [anon_sym_DOLLAR] = ACTIONS(1920), [anon_sym_u8] = ACTIONS(1984), [anon_sym_i8] = ACTIONS(1984), @@ -51382,30 +51459,30 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1984), [anon_sym_while] = ACTIONS(1984), [sym_mutable_specifier] = ACTIONS(1984), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1984), [sym_super] = ACTIONS(1984), [sym_crate] = ACTIONS(1984), [sym_metavariable] = ACTIONS(1986), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [483] = { - [sym_token_tree] = STATE(461), - [sym_token_repetition] = STATE(461), - [sym__literal] = STATE(461), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(461), + [484] = { + [sym_token_tree] = STATE(492), + [sym_token_repetition] = STATE(492), + [sym__literal] = STATE(492), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(492), [sym_identifier] = ACTIONS(1988), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1946), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), @@ -51456,548 +51533,474 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(1988), [anon_sym_while] = ACTIONS(1988), [sym_mutable_specifier] = ACTIONS(1988), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(1988), [sym_super] = ACTIONS(1988), [sym_crate] = ACTIONS(1988), [sym_metavariable] = ACTIONS(1990), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, - [484] = { - [sym_token_tree] = STATE(474), - [sym_token_repetition] = STATE(474), - [sym__literal] = STATE(474), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(474), - [sym_identifier] = ACTIONS(1992), + [485] = { + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1976), [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1992), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1992), - [anon_sym_i8] = ACTIONS(1992), - [anon_sym_u16] = ACTIONS(1992), - [anon_sym_i16] = ACTIONS(1992), - [anon_sym_u32] = ACTIONS(1992), - [anon_sym_i32] = ACTIONS(1992), - [anon_sym_u64] = ACTIONS(1992), - [anon_sym_i64] = ACTIONS(1992), - [anon_sym_u128] = ACTIONS(1992), - [anon_sym_i128] = ACTIONS(1992), - [anon_sym_isize] = ACTIONS(1992), - [anon_sym_usize] = ACTIONS(1992), - [anon_sym_f32] = ACTIONS(1992), - [anon_sym_f64] = ACTIONS(1992), - [anon_sym_bool] = ACTIONS(1992), - [anon_sym_str] = ACTIONS(1992), - [anon_sym_char] = ACTIONS(1992), - [aux_sym__non_special_token_token1] = ACTIONS(1992), - [anon_sym_SQUOTE] = ACTIONS(1992), - [anon_sym_as] = ACTIONS(1992), - [anon_sym_async] = ACTIONS(1992), - [anon_sym_await] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_const] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_enum] = ACTIONS(1992), - [anon_sym_fn] = ACTIONS(1992), - [anon_sym_for] = ACTIONS(1992), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_impl] = ACTIONS(1992), - [anon_sym_let] = ACTIONS(1992), - [anon_sym_loop] = ACTIONS(1992), - [anon_sym_match] = ACTIONS(1992), - [anon_sym_mod] = ACTIONS(1992), - [anon_sym_pub] = ACTIONS(1992), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_struct] = ACTIONS(1992), - [anon_sym_trait] = ACTIONS(1992), - [anon_sym_type] = ACTIONS(1992), - [anon_sym_union] = ACTIONS(1992), - [anon_sym_unsafe] = ACTIONS(1992), - [anon_sym_use] = ACTIONS(1992), - [anon_sym_where] = ACTIONS(1992), - [anon_sym_while] = ACTIONS(1992), - [sym_mutable_specifier] = ACTIONS(1992), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1992), - [sym_super] = ACTIONS(1992), - [sym_crate] = ACTIONS(1992), - [sym_metavariable] = ACTIONS(1994), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), - [sym_block_comment] = ACTIONS(3), - }, - [485] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2242), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [486] = { - [sym_token_tree] = STATE(463), - [sym_token_repetition] = STATE(463), - [sym__literal] = STATE(463), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(463), - [sym_identifier] = ACTIONS(1996), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1952), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1992), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1996), - [anon_sym_i8] = ACTIONS(1996), - [anon_sym_u16] = ACTIONS(1996), - [anon_sym_i16] = ACTIONS(1996), - [anon_sym_u32] = ACTIONS(1996), - [anon_sym_i32] = ACTIONS(1996), - [anon_sym_u64] = ACTIONS(1996), - [anon_sym_i64] = ACTIONS(1996), - [anon_sym_u128] = ACTIONS(1996), - [anon_sym_i128] = ACTIONS(1996), - [anon_sym_isize] = ACTIONS(1996), - [anon_sym_usize] = ACTIONS(1996), - [anon_sym_f32] = ACTIONS(1996), - [anon_sym_f64] = ACTIONS(1996), - [anon_sym_bool] = ACTIONS(1996), - [anon_sym_str] = ACTIONS(1996), - [anon_sym_char] = ACTIONS(1996), - [aux_sym__non_special_token_token1] = ACTIONS(1996), - [anon_sym_SQUOTE] = ACTIONS(1996), - [anon_sym_as] = ACTIONS(1996), - [anon_sym_async] = ACTIONS(1996), - [anon_sym_await] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_const] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_enum] = ACTIONS(1996), - [anon_sym_fn] = ACTIONS(1996), - [anon_sym_for] = ACTIONS(1996), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_impl] = ACTIONS(1996), - [anon_sym_let] = ACTIONS(1996), - [anon_sym_loop] = ACTIONS(1996), - [anon_sym_match] = ACTIONS(1996), - [anon_sym_mod] = ACTIONS(1996), - [anon_sym_pub] = ACTIONS(1996), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_struct] = ACTIONS(1996), - [anon_sym_trait] = ACTIONS(1996), - [anon_sym_type] = ACTIONS(1996), - [anon_sym_union] = ACTIONS(1996), - [anon_sym_unsafe] = ACTIONS(1996), - [anon_sym_use] = ACTIONS(1996), - [anon_sym_where] = ACTIONS(1996), - [anon_sym_while] = ACTIONS(1996), - [sym_mutable_specifier] = ACTIONS(1996), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1996), - [sym_super] = ACTIONS(1996), - [sym_crate] = ACTIONS(1996), - [sym_metavariable] = ACTIONS(1998), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [487] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(1992), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [488] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [sym_token_tree] = STATE(485), + [sym_token_repetition] = STATE(485), + [sym__literal] = STATE(485), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(485), + [sym_identifier] = ACTIONS(1994), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_RBRACK] = ACTIONS(1996), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [aux_sym__non_special_token_token1] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_await] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_where] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [sym_mutable_specifier] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1998), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [489] = { - [sym_token_tree] = STATE(400), - [sym_token_repetition] = STATE(400), - [sym__literal] = STATE(400), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1930), + [sym_token_tree] = STATE(486), + [sym_token_repetition] = STATE(486), + [sym__literal] = STATE(486), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(486), + [sym_identifier] = ACTIONS(2000), [anon_sym_LPAREN] = ACTIONS(1912), [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1996), [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(2000), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(1930), - [anon_sym_i8] = ACTIONS(1930), - [anon_sym_u16] = ACTIONS(1930), - [anon_sym_i16] = ACTIONS(1930), - [anon_sym_u32] = ACTIONS(1930), - [anon_sym_i32] = ACTIONS(1930), - [anon_sym_u64] = ACTIONS(1930), - [anon_sym_i64] = ACTIONS(1930), - [anon_sym_u128] = ACTIONS(1930), - [anon_sym_i128] = ACTIONS(1930), - [anon_sym_isize] = ACTIONS(1930), - [anon_sym_usize] = ACTIONS(1930), - [anon_sym_f32] = ACTIONS(1930), - [anon_sym_f64] = ACTIONS(1930), - [anon_sym_bool] = ACTIONS(1930), - [anon_sym_str] = ACTIONS(1930), - [anon_sym_char] = ACTIONS(1930), - [aux_sym__non_special_token_token1] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [anon_sym_fn] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_impl] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_loop] = ACTIONS(1930), - [anon_sym_match] = ACTIONS(1930), - [anon_sym_mod] = ACTIONS(1930), - [anon_sym_pub] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_struct] = ACTIONS(1930), - [anon_sym_trait] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_union] = ACTIONS(1930), - [anon_sym_unsafe] = ACTIONS(1930), - [anon_sym_use] = ACTIONS(1930), - [anon_sym_where] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [sym_mutable_specifier] = ACTIONS(1930), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [aux_sym__non_special_token_token1] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_as] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_await] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_where] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [sym_mutable_specifier] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_crate] = ACTIONS(1930), - [sym_metavariable] = ACTIONS(1934), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(2002), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [490] = { - [sym_token_tree] = STATE(464), - [sym_token_repetition] = STATE(464), - [sym__literal] = STATE(464), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(464), - [sym_identifier] = ACTIONS(2002), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_RPAREN] = ACTIONS(2004), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_u8] = ACTIONS(2002), - [anon_sym_i8] = ACTIONS(2002), - [anon_sym_u16] = ACTIONS(2002), - [anon_sym_i16] = ACTIONS(2002), - [anon_sym_u32] = ACTIONS(2002), - [anon_sym_i32] = ACTIONS(2002), - [anon_sym_u64] = ACTIONS(2002), - [anon_sym_i64] = ACTIONS(2002), - [anon_sym_u128] = ACTIONS(2002), - [anon_sym_i128] = ACTIONS(2002), - [anon_sym_isize] = ACTIONS(2002), - [anon_sym_usize] = ACTIONS(2002), - [anon_sym_f32] = ACTIONS(2002), - [anon_sym_f64] = ACTIONS(2002), - [anon_sym_bool] = ACTIONS(2002), - [anon_sym_str] = ACTIONS(2002), - [anon_sym_char] = ACTIONS(2002), - [aux_sym__non_special_token_token1] = ACTIONS(2002), - [anon_sym_SQUOTE] = ACTIONS(2002), - [anon_sym_as] = ACTIONS(2002), - [anon_sym_async] = ACTIONS(2002), - [anon_sym_await] = ACTIONS(2002), - [anon_sym_break] = ACTIONS(2002), - [anon_sym_const] = ACTIONS(2002), - [anon_sym_continue] = ACTIONS(2002), - [anon_sym_default] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(2002), - [anon_sym_fn] = ACTIONS(2002), - [anon_sym_for] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2002), - [anon_sym_impl] = ACTIONS(2002), - [anon_sym_let] = ACTIONS(2002), - [anon_sym_loop] = ACTIONS(2002), - [anon_sym_match] = ACTIONS(2002), - [anon_sym_mod] = ACTIONS(2002), - [anon_sym_pub] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2002), - [anon_sym_static] = ACTIONS(2002), - [anon_sym_struct] = ACTIONS(2002), - [anon_sym_trait] = ACTIONS(2002), - [anon_sym_type] = ACTIONS(2002), - [anon_sym_union] = ACTIONS(2002), - [anon_sym_unsafe] = ACTIONS(2002), - [anon_sym_use] = ACTIONS(2002), - [anon_sym_where] = ACTIONS(2002), - [anon_sym_while] = ACTIONS(2002), - [sym_mutable_specifier] = ACTIONS(2002), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2002), - [sym_super] = ACTIONS(2002), - [sym_crate] = ACTIONS(2002), - [sym_metavariable] = ACTIONS(2004), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [491] = { - [sym_token_tree] = STATE(475), - [sym_token_repetition] = STATE(475), - [sym__literal] = STATE(475), - [sym_string_literal] = STATE(513), - [sym_boolean_literal] = STATE(513), - [aux_sym_token_tree_repeat1] = STATE(475), + [sym_token_tree] = STATE(487), + [sym_token_repetition] = STATE(487), + [sym__literal] = STATE(487), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(487), [sym_identifier] = ACTIONS(2006), [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1976), + [anon_sym_RPAREN] = ACTIONS(1996), [anon_sym_LBRACE] = ACTIONS(1914), [anon_sym_LBRACK] = ACTIONS(1916), [anon_sym_DOLLAR] = ACTIONS(1920), @@ -52048,122 +52051,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(2006), [anon_sym_while] = ACTIONS(2006), [sym_mutable_specifier] = ACTIONS(2006), - [sym_integer_literal] = ACTIONS(1057), - [aux_sym_string_literal_token1] = ACTIONS(1059), - [sym_char_literal] = ACTIONS(1057), - [anon_sym_true] = ACTIONS(1061), - [anon_sym_false] = ACTIONS(1061), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), [sym_line_comment] = ACTIONS(898), [sym_self] = ACTIONS(2006), [sym_super] = ACTIONS(2006), [sym_crate] = ACTIONS(2006), [sym_metavariable] = ACTIONS(2008), - [sym_raw_string_literal] = ACTIONS(1057), - [sym_float_literal] = ACTIONS(1057), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [492] = { - [sym_attribute_item] = STATE(495), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_arm] = STATE(493), - [sym_last_match_arm] = STATE(2389), - [sym_match_pattern] = STATE(2263), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(495), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_token_tree] = STATE(274), + [sym_token_repetition] = STATE(274), + [sym__literal] = STATE(274), + [sym_string_literal] = STATE(520), + [sym_boolean_literal] = STATE(520), + [aux_sym_token_tree_repeat1] = STATE(274), + [sym_identifier] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_DOLLAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [aux_sym__non_special_token_token1] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_as] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_await] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_where] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [sym_mutable_specifier] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1061), + [aux_sym_string_literal_token1] = ACTIONS(1063), + [sym_char_literal] = ACTIONS(1061), + [anon_sym_true] = ACTIONS(1065), + [anon_sym_false] = ACTIONS(1065), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1922), + [sym_raw_string_literal] = ACTIONS(1061), + [sym_float_literal] = ACTIONS(1061), [sym_block_comment] = ACTIONS(3), }, [493] = { - [sym_attribute_item] = STATE(500), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2264), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), + [sym_attribute_item] = STATE(497), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2320), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), [sym_match_arm] = STATE(493), - [sym_match_pattern] = STATE(2264), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(500), + [sym_match_pattern] = STATE(2320), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(497), [aux_sym_match_block_repeat1] = STATE(493), [sym_identifier] = ACTIONS(2010), [anon_sym_LPAREN] = ACTIONS(2013), @@ -52210,36 +52213,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [494] = { - [sym_attribute_item] = STATE(521), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), + [sym_attribute_item] = STATE(505), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), [sym_visibility_modifier] = STATE(660), - [sym__type] = STATE(1662), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(521), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(505), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_RPAREN] = ACTIONS(2069), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52258,22 +52261,22 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), + [anon_sym_BANG] = ACTIONS(686), [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52282,249 +52285,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [495] = { - [sym_attribute_item] = STATE(539), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2380), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_pattern] = STATE(2378), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [496] = { - [sym_identifier] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_COLON] = ACTIONS(2085), - [anon_sym_DOLLAR] = ACTIONS(2081), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [aux_sym__non_special_token_token1] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_where] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [sym_mutable_specifier] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2083), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2083), - [sym_raw_string_literal] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), - [sym_block_comment] = ACTIONS(3), - }, - [497] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [498] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2081), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52543,21 +52333,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52565,37 +52355,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [499] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [496] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2091), + [anon_sym_RPAREN] = ACTIONS(2083), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52614,21 +52404,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52636,33 +52426,33 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [500] = { - [sym_attribute_item] = STATE(539), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_macro_invocation] = STATE(2380), - [sym_scoped_identifier] = STATE(1451), - [sym_scoped_type_identifier] = STATE(1792), - [sym_match_pattern] = STATE(2380), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1817), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [aux_sym_enum_variant_list_repeat1] = STATE(539), + [497] = { + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2383), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_pattern] = STATE(2383), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(538), [sym_identifier] = ACTIONS(1886), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1892), @@ -52685,59 +52475,59 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), [anon_sym_POUND] = ACTIONS(357), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [501] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [498] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_RPAREN] = ACTIONS(2085), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52756,21 +52546,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52778,37 +52568,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [502] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [499] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2087), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52827,21 +52617,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52849,37 +52639,37 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [503] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [500] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2089), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -52898,21 +52688,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -52920,106 +52710,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [504] = { - [sym_attribute_item] = STATE(1068), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(640), - [sym__type] = STATE(1755), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(1068), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [501] = { + [sym_identifier] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_RPAREN] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_RBRACK] = ACTIONS(2093), + [anon_sym_COLON] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [aux_sym__non_special_token_token1] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_as] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_where] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [sym_mutable_specifier] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2093), + [aux_sym_string_literal_token1] = ACTIONS(2093), + [sym_char_literal] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2093), + [sym_raw_string_literal] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + [sym_block_comment] = ACTIONS(3), + }, + [502] = { + [sym_attribute_item] = STATE(538), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_macro_invocation] = STATE(2383), + [sym_scoped_identifier] = STATE(1444), + [sym_scoped_type_identifier] = STATE(1839), + [sym_match_pattern] = STATE(2384), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1902), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [aux_sym_enum_variant_list_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(357), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [505] = { - [sym_attribute_item] = STATE(504), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(604), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(504), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [503] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_RPAREN] = ACTIONS(2097), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -53038,21 +52901,21 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), + [anon_sym_unsafe] = ACTIONS(670), [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -53060,7 +52923,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [506] = { + [504] = { [sym_identifier] = ACTIONS(2099), [anon_sym_LPAREN] = ACTIONS(2101), [anon_sym_RPAREN] = ACTIONS(2101), @@ -53130,6 +52993,146 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2101), [sym_block_comment] = ACTIONS(3), }, + [505] = { + [sym_attribute_item] = STATE(1069), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(615), + [sym__type] = STATE(1658), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(1069), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(864), + [sym_block_comment] = ACTIONS(3), + }, + [506] = { + [sym_identifier] = ACTIONS(580), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(578), + [anon_sym_RBRACK] = ACTIONS(578), + [anon_sym_DOLLAR] = ACTIONS(580), + [anon_sym_u8] = ACTIONS(580), + [anon_sym_i8] = ACTIONS(580), + [anon_sym_u16] = ACTIONS(580), + [anon_sym_i16] = ACTIONS(580), + [anon_sym_u32] = ACTIONS(580), + [anon_sym_i32] = ACTIONS(580), + [anon_sym_u64] = ACTIONS(580), + [anon_sym_i64] = ACTIONS(580), + [anon_sym_u128] = ACTIONS(580), + [anon_sym_i128] = ACTIONS(580), + [anon_sym_isize] = ACTIONS(580), + [anon_sym_usize] = ACTIONS(580), + [anon_sym_f32] = ACTIONS(580), + [anon_sym_f64] = ACTIONS(580), + [anon_sym_bool] = ACTIONS(580), + [anon_sym_str] = ACTIONS(580), + [anon_sym_char] = ACTIONS(580), + [aux_sym__non_special_token_token1] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(580), + [anon_sym_as] = ACTIONS(580), + [anon_sym_async] = ACTIONS(580), + [anon_sym_await] = ACTIONS(580), + [anon_sym_break] = ACTIONS(580), + [anon_sym_const] = ACTIONS(580), + [anon_sym_continue] = ACTIONS(580), + [anon_sym_default] = ACTIONS(580), + [anon_sym_enum] = ACTIONS(580), + [anon_sym_fn] = ACTIONS(580), + [anon_sym_for] = ACTIONS(580), + [anon_sym_if] = ACTIONS(580), + [anon_sym_impl] = ACTIONS(580), + [anon_sym_let] = ACTIONS(580), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(580), + [anon_sym_mod] = ACTIONS(580), + [anon_sym_pub] = ACTIONS(580), + [anon_sym_return] = ACTIONS(580), + [anon_sym_static] = ACTIONS(580), + [anon_sym_struct] = ACTIONS(580), + [anon_sym_trait] = ACTIONS(580), + [anon_sym_type] = ACTIONS(580), + [anon_sym_union] = ACTIONS(580), + [anon_sym_unsafe] = ACTIONS(580), + [anon_sym_use] = ACTIONS(580), + [anon_sym_where] = ACTIONS(580), + [anon_sym_while] = ACTIONS(580), + [sym_mutable_specifier] = ACTIONS(580), + [sym_integer_literal] = ACTIONS(578), + [aux_sym_string_literal_token1] = ACTIONS(578), + [sym_char_literal] = ACTIONS(578), + [anon_sym_true] = ACTIONS(580), + [anon_sym_false] = ACTIONS(580), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(580), + [sym_super] = ACTIONS(580), + [sym_crate] = ACTIONS(580), + [sym_metavariable] = ACTIONS(578), + [sym_raw_string_literal] = ACTIONS(578), + [sym_float_literal] = ACTIONS(578), + [sym_block_comment] = ACTIONS(3), + }, [507] = { [sym_identifier] = ACTIONS(2103), [anon_sym_LPAREN] = ACTIONS(2105), @@ -53201,76 +53204,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [508] = { - [sym_identifier] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(421), - [anon_sym_RPAREN] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_RBRACK] = ACTIONS(421), - [anon_sym_DOLLAR] = ACTIONS(423), - [anon_sym_u8] = ACTIONS(423), - [anon_sym_i8] = ACTIONS(423), - [anon_sym_u16] = ACTIONS(423), - [anon_sym_i16] = ACTIONS(423), - [anon_sym_u32] = ACTIONS(423), - [anon_sym_i32] = ACTIONS(423), - [anon_sym_u64] = ACTIONS(423), - [anon_sym_i64] = ACTIONS(423), - [anon_sym_u128] = ACTIONS(423), - [anon_sym_i128] = ACTIONS(423), - [anon_sym_isize] = ACTIONS(423), - [anon_sym_usize] = ACTIONS(423), - [anon_sym_f32] = ACTIONS(423), - [anon_sym_f64] = ACTIONS(423), - [anon_sym_bool] = ACTIONS(423), - [anon_sym_str] = ACTIONS(423), - [anon_sym_char] = ACTIONS(423), - [aux_sym__non_special_token_token1] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(423), - [anon_sym_as] = ACTIONS(423), - [anon_sym_async] = ACTIONS(423), - [anon_sym_await] = ACTIONS(423), - [anon_sym_break] = ACTIONS(423), - [anon_sym_const] = ACTIONS(423), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(423), - [anon_sym_enum] = ACTIONS(423), - [anon_sym_fn] = ACTIONS(423), - [anon_sym_for] = ACTIONS(423), - [anon_sym_if] = ACTIONS(423), - [anon_sym_impl] = ACTIONS(423), - [anon_sym_let] = ACTIONS(423), - [anon_sym_loop] = ACTIONS(423), - [anon_sym_match] = ACTIONS(423), - [anon_sym_mod] = ACTIONS(423), - [anon_sym_pub] = ACTIONS(423), - [anon_sym_return] = ACTIONS(423), - [anon_sym_static] = ACTIONS(423), - [anon_sym_struct] = ACTIONS(423), - [anon_sym_trait] = ACTIONS(423), - [anon_sym_type] = ACTIONS(423), - [anon_sym_union] = ACTIONS(423), - [anon_sym_unsafe] = ACTIONS(423), - [anon_sym_use] = ACTIONS(423), - [anon_sym_where] = ACTIONS(423), - [anon_sym_while] = ACTIONS(423), - [sym_mutable_specifier] = ACTIONS(423), - [sym_integer_literal] = ACTIONS(421), - [aux_sym_string_literal_token1] = ACTIONS(421), - [sym_char_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(423), - [sym_super] = ACTIONS(423), - [sym_crate] = ACTIONS(423), - [sym_metavariable] = ACTIONS(421), - [sym_raw_string_literal] = ACTIONS(421), - [sym_float_literal] = ACTIONS(421), - [sym_block_comment] = ACTIONS(3), - }, - [509] = { [sym_identifier] = ACTIONS(2107), [anon_sym_LPAREN] = ACTIONS(2109), [anon_sym_RPAREN] = ACTIONS(2109), @@ -53340,7 +53273,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2109), [sym_block_comment] = ACTIONS(3), }, - [510] = { + [509] = { [sym_identifier] = ACTIONS(2111), [anon_sym_LPAREN] = ACTIONS(2113), [anon_sym_RPAREN] = ACTIONS(2113), @@ -53410,7 +53343,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2113), [sym_block_comment] = ACTIONS(3), }, - [511] = { + [510] = { [sym_identifier] = ACTIONS(2115), [anon_sym_LPAREN] = ACTIONS(2117), [anon_sym_RPAREN] = ACTIONS(2117), @@ -53480,7 +53413,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2117), [sym_block_comment] = ACTIONS(3), }, - [512] = { + [511] = { [sym_identifier] = ACTIONS(2119), [anon_sym_LPAREN] = ACTIONS(2121), [anon_sym_RPAREN] = ACTIONS(2121), @@ -53550,7 +53483,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2121), [sym_block_comment] = ACTIONS(3), }, - [513] = { + [512] = { [sym_identifier] = ACTIONS(2123), [anon_sym_LPAREN] = ACTIONS(2125), [anon_sym_RPAREN] = ACTIONS(2125), @@ -53620,7 +53553,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2125), [sym_block_comment] = ACTIONS(3), }, - [514] = { + [513] = { [sym_identifier] = ACTIONS(2127), [anon_sym_LPAREN] = ACTIONS(2129), [anon_sym_RPAREN] = ACTIONS(2129), @@ -53690,6 +53623,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2129), [sym_block_comment] = ACTIONS(3), }, + [514] = { + [sym_attribute_item] = STATE(1069), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(604), + [sym__type] = STATE(1959), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(1069), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(864), + [sym_block_comment] = ACTIONS(3), + }, [515] = { [sym_identifier] = ACTIONS(2131), [anon_sym_LPAREN] = ACTIONS(2133), @@ -53761,6 +53764,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = ACTIONS(3), }, [516] = { + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_DOLLAR] = ACTIONS(409), + [anon_sym_u8] = ACTIONS(409), + [anon_sym_i8] = ACTIONS(409), + [anon_sym_u16] = ACTIONS(409), + [anon_sym_i16] = ACTIONS(409), + [anon_sym_u32] = ACTIONS(409), + [anon_sym_i32] = ACTIONS(409), + [anon_sym_u64] = ACTIONS(409), + [anon_sym_i64] = ACTIONS(409), + [anon_sym_u128] = ACTIONS(409), + [anon_sym_i128] = ACTIONS(409), + [anon_sym_isize] = ACTIONS(409), + [anon_sym_usize] = ACTIONS(409), + [anon_sym_f32] = ACTIONS(409), + [anon_sym_f64] = ACTIONS(409), + [anon_sym_bool] = ACTIONS(409), + [anon_sym_str] = ACTIONS(409), + [anon_sym_char] = ACTIONS(409), + [aux_sym__non_special_token_token1] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(409), + [anon_sym_await] = ACTIONS(409), + [anon_sym_break] = ACTIONS(409), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(409), + [anon_sym_default] = ACTIONS(409), + [anon_sym_enum] = ACTIONS(409), + [anon_sym_fn] = ACTIONS(409), + [anon_sym_for] = ACTIONS(409), + [anon_sym_if] = ACTIONS(409), + [anon_sym_impl] = ACTIONS(409), + [anon_sym_let] = ACTIONS(409), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_match] = ACTIONS(409), + [anon_sym_mod] = ACTIONS(409), + [anon_sym_pub] = ACTIONS(409), + [anon_sym_return] = ACTIONS(409), + [anon_sym_static] = ACTIONS(409), + [anon_sym_struct] = ACTIONS(409), + [anon_sym_trait] = ACTIONS(409), + [anon_sym_type] = ACTIONS(409), + [anon_sym_union] = ACTIONS(409), + [anon_sym_unsafe] = ACTIONS(409), + [anon_sym_use] = ACTIONS(409), + [anon_sym_where] = ACTIONS(409), + [anon_sym_while] = ACTIONS(409), + [sym_mutable_specifier] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(407), + [aux_sym_string_literal_token1] = ACTIONS(407), + [sym_char_literal] = ACTIONS(407), + [anon_sym_true] = ACTIONS(409), + [anon_sym_false] = ACTIONS(409), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(409), + [sym_super] = ACTIONS(409), + [sym_crate] = ACTIONS(409), + [sym_metavariable] = ACTIONS(407), + [sym_raw_string_literal] = ACTIONS(407), + [sym_float_literal] = ACTIONS(407), + [sym_block_comment] = ACTIONS(3), + }, + [517] = { [sym_identifier] = ACTIONS(2135), [anon_sym_LPAREN] = ACTIONS(2137), [anon_sym_RPAREN] = ACTIONS(2137), @@ -53830,217 +53903,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2137), [sym_block_comment] = ACTIONS(3), }, - [517] = { - [sym_identifier] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(560), - [anon_sym_DOLLAR] = ACTIONS(562), - [anon_sym_u8] = ACTIONS(562), - [anon_sym_i8] = ACTIONS(562), - [anon_sym_u16] = ACTIONS(562), - [anon_sym_i16] = ACTIONS(562), - [anon_sym_u32] = ACTIONS(562), - [anon_sym_i32] = ACTIONS(562), - [anon_sym_u64] = ACTIONS(562), - [anon_sym_i64] = ACTIONS(562), - [anon_sym_u128] = ACTIONS(562), - [anon_sym_i128] = ACTIONS(562), - [anon_sym_isize] = ACTIONS(562), - [anon_sym_usize] = ACTIONS(562), - [anon_sym_f32] = ACTIONS(562), - [anon_sym_f64] = ACTIONS(562), - [anon_sym_bool] = ACTIONS(562), - [anon_sym_str] = ACTIONS(562), - [anon_sym_char] = ACTIONS(562), - [aux_sym__non_special_token_token1] = ACTIONS(562), - [anon_sym_SQUOTE] = ACTIONS(562), - [anon_sym_as] = ACTIONS(562), - [anon_sym_async] = ACTIONS(562), - [anon_sym_await] = ACTIONS(562), - [anon_sym_break] = ACTIONS(562), - [anon_sym_const] = ACTIONS(562), - [anon_sym_continue] = ACTIONS(562), - [anon_sym_default] = ACTIONS(562), - [anon_sym_enum] = ACTIONS(562), - [anon_sym_fn] = ACTIONS(562), - [anon_sym_for] = ACTIONS(562), - [anon_sym_if] = ACTIONS(562), - [anon_sym_impl] = ACTIONS(562), - [anon_sym_let] = ACTIONS(562), - [anon_sym_loop] = ACTIONS(562), - [anon_sym_match] = ACTIONS(562), - [anon_sym_mod] = ACTIONS(562), - [anon_sym_pub] = ACTIONS(562), - [anon_sym_return] = ACTIONS(562), - [anon_sym_static] = ACTIONS(562), - [anon_sym_struct] = ACTIONS(562), - [anon_sym_trait] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_union] = ACTIONS(562), - [anon_sym_unsafe] = ACTIONS(562), - [anon_sym_use] = ACTIONS(562), - [anon_sym_where] = ACTIONS(562), - [anon_sym_while] = ACTIONS(562), - [sym_mutable_specifier] = ACTIONS(562), - [sym_integer_literal] = ACTIONS(560), - [aux_sym_string_literal_token1] = ACTIONS(560), - [sym_char_literal] = ACTIONS(560), - [anon_sym_true] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(562), - [sym_super] = ACTIONS(562), - [sym_crate] = ACTIONS(562), - [sym_metavariable] = ACTIONS(560), - [sym_raw_string_literal] = ACTIONS(560), - [sym_float_literal] = ACTIONS(560), - [sym_block_comment] = ACTIONS(3), - }, [518] = { + [sym_parameter] = STATE(1901), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1698), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), [sym_identifier] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_RPAREN] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_RBRACK] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2139), - [anon_sym_u8] = ACTIONS(2139), - [anon_sym_i8] = ACTIONS(2139), - [anon_sym_u16] = ACTIONS(2139), - [anon_sym_i16] = ACTIONS(2139), - [anon_sym_u32] = ACTIONS(2139), - [anon_sym_i32] = ACTIONS(2139), - [anon_sym_u64] = ACTIONS(2139), - [anon_sym_i64] = ACTIONS(2139), - [anon_sym_u128] = ACTIONS(2139), - [anon_sym_i128] = ACTIONS(2139), - [anon_sym_isize] = ACTIONS(2139), - [anon_sym_usize] = ACTIONS(2139), - [anon_sym_f32] = ACTIONS(2139), - [anon_sym_f64] = ACTIONS(2139), - [anon_sym_bool] = ACTIONS(2139), - [anon_sym_str] = ACTIONS(2139), - [anon_sym_char] = ACTIONS(2139), - [aux_sym__non_special_token_token1] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_as] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_await] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_impl] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_mod] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_trait] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_where] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [sym_mutable_specifier] = ACTIONS(2139), - [sym_integer_literal] = ACTIONS(2141), - [aux_sym_string_literal_token1] = ACTIONS(2141), - [sym_char_literal] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_crate] = ACTIONS(2139), - [sym_metavariable] = ACTIONS(2141), - [sym_raw_string_literal] = ACTIONS(2141), - [sym_float_literal] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(682), + [anon_sym_union] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [519] = { - [sym_identifier] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_RPAREN] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_RBRACK] = ACTIONS(2145), - [anon_sym_DOLLAR] = ACTIONS(2143), - [anon_sym_u8] = ACTIONS(2143), - [anon_sym_i8] = ACTIONS(2143), - [anon_sym_u16] = ACTIONS(2143), - [anon_sym_i16] = ACTIONS(2143), - [anon_sym_u32] = ACTIONS(2143), - [anon_sym_i32] = ACTIONS(2143), - [anon_sym_u64] = ACTIONS(2143), - [anon_sym_i64] = ACTIONS(2143), - [anon_sym_u128] = ACTIONS(2143), - [anon_sym_i128] = ACTIONS(2143), - [anon_sym_isize] = ACTIONS(2143), - [anon_sym_usize] = ACTIONS(2143), - [anon_sym_f32] = ACTIONS(2143), - [anon_sym_f64] = ACTIONS(2143), - [anon_sym_bool] = ACTIONS(2143), - [anon_sym_str] = ACTIONS(2143), - [anon_sym_char] = ACTIONS(2143), - [aux_sym__non_special_token_token1] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_as] = ACTIONS(2143), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_default] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_impl] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2143), - [anon_sym_loop] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_mod] = ACTIONS(2143), - [anon_sym_pub] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_trait] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_union] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_use] = ACTIONS(2143), - [anon_sym_where] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [sym_mutable_specifier] = ACTIONS(2143), - [sym_integer_literal] = ACTIONS(2145), - [aux_sym_string_literal_token1] = ACTIONS(2145), - [sym_char_literal] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2143), - [sym_super] = ACTIONS(2143), - [sym_crate] = ACTIONS(2143), - [sym_metavariable] = ACTIONS(2145), - [sym_raw_string_literal] = ACTIONS(2145), - [sym_float_literal] = ACTIONS(2145), - [sym_block_comment] = ACTIONS(3), - }, - [520] = { [sym_identifier] = ACTIONS(2147), [anon_sym_LPAREN] = ACTIONS(2149), [anon_sym_RPAREN] = ACTIONS(2149), @@ -54110,77 +54043,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2149), [sym_block_comment] = ACTIONS(3), }, - [521] = { - [sym_attribute_item] = STATE(1068), - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym_visibility_modifier] = STATE(658), - [sym__type] = STATE(1688), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_enum_variant_list_repeat1] = STATE(1068), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(864), - [sym_block_comment] = ACTIONS(3), - }, - [522] = { + [520] = { [sym_identifier] = ACTIONS(2151), [anon_sym_LPAREN] = ACTIONS(2153), [anon_sym_RPAREN] = ACTIONS(2153), @@ -54208,354 +54071,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(2151), [aux_sym__non_special_token_token1] = ACTIONS(2151), [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_await] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_impl] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_mod] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_trait] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_where] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [sym_mutable_specifier] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [sym_line_comment] = ACTIONS(898), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2153), - [sym_raw_string_literal] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), - [sym_block_comment] = ACTIONS(3), - }, - [523] = { - [sym_parameter] = STATE(1834), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1695), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(664), - [anon_sym_union] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [anon_sym_PIPE] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [524] = { - [sym_function_modifiers] = STATE(2240), - [sym_const_parameter] = STATE(1942), - [sym_constrained_type_parameter] = STATE(1683), - [sym_optional_type_parameter] = STATE(1942), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1833), - [sym_bracketed_type] = STATE(2230), - [sym_qualified_type] = STATE(2213), - [sym_lifetime] = STATE(1546), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(2167), - [sym_block_comment] = ACTIONS(3), - }, - [525] = { - [sym_parameter] = STATE(2132), - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1904), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(664), - [anon_sym_union] = ACTIONS(664), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), - [sym_block_comment] = ACTIONS(3), - }, - [526] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1667), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_u8] = ACTIONS(1894), - [anon_sym_i8] = ACTIONS(1894), - [anon_sym_u16] = ACTIONS(1894), - [anon_sym_i16] = ACTIONS(1894), - [anon_sym_u32] = ACTIONS(1894), - [anon_sym_i32] = ACTIONS(1894), - [anon_sym_u64] = ACTIONS(1894), - [anon_sym_i64] = ACTIONS(1894), - [anon_sym_u128] = ACTIONS(1894), - [anon_sym_i128] = ACTIONS(1894), - [anon_sym_isize] = ACTIONS(1894), - [anon_sym_usize] = ACTIONS(1894), - [anon_sym_f32] = ACTIONS(1894), - [anon_sym_f64] = ACTIONS(1894), - [anon_sym_bool] = ACTIONS(1894), - [anon_sym_str] = ACTIONS(1894), - [anon_sym_char] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(674), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(1902), - [sym_crate] = ACTIONS(1902), - [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_await] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_impl] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_mod] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_trait] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_where] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [sym_mutable_specifier] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2153), + [sym_raw_string_literal] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), [sym_block_comment] = ACTIONS(3), }, - [527] = { - [sym_function_modifiers] = STATE(2240), - [sym_higher_ranked_trait_bound] = STATE(1448), - [sym_removed_trait_bound] = STATE(1448), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1462), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [521] = { + [sym_attribute_item] = STATE(514), + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym_visibility_modifier] = STATE(600), + [sym__type] = STATE(1867), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_enum_variant_list_repeat1] = STATE(514), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -54574,56 +54161,199 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), + [sym_crate] = ACTIONS(2079), [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [528] = { - [sym_function_modifiers] = STATE(2240), - [sym_higher_ranked_trait_bound] = STATE(1503), - [sym_removed_trait_bound] = STATE(1503), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1515), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1509), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2067), + [522] = { + [sym_identifier] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_RPAREN] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_RBRACK] = ACTIONS(2157), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [aux_sym__non_special_token_token1] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_where] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [sym_mutable_specifier] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2157), + [sym_raw_string_literal] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), + [sym_block_comment] = ACTIONS(3), + }, + [523] = { + [sym_identifier] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2161), + [anon_sym_DOLLAR] = ACTIONS(2159), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u128] = ACTIONS(2159), + [anon_sym_i128] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_str] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [aux_sym__non_special_token_token1] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_as] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_await] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_impl] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_mod] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_trait] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_where] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [sym_mutable_specifier] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [sym_line_comment] = ACTIONS(898), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2161), + [sym_raw_string_literal] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), + [sym_block_comment] = ACTIONS(3), + }, + [524] = { + [sym_function_modifiers] = STATE(2206), + [sym_const_parameter] = STATE(1804), + [sym_constrained_type_parameter] = STATE(1737), + [sym_optional_type_parameter] = STATE(1804), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(2241), + [sym_qualified_type] = STATE(2327), + [sym_lifetime] = STATE(1546), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2163), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -54642,56 +54372,125 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), + [sym_metavariable] = ACTIONS(2167), [sym_block_comment] = ACTIONS(3), }, - [529] = { - [sym_function_modifiers] = STATE(2240), - [sym_higher_ranked_trait_bound] = STATE(1503), - [sym_removed_trait_bound] = STATE(1503), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1515), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1522), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [525] = { + [sym_parameter] = STATE(2055), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1784), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(682), + [anon_sym_union] = ACTIONS(682), + [anon_sym_ref] = ACTIONS(692), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [526] = { + [sym_function_modifiers] = STATE(2206), + [sym_higher_ranked_trait_bound] = STATE(1464), + [sym_removed_trait_bound] = STATE(1464), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1468), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1469), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(2169), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -54710,19 +54509,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -54730,36 +54529,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [530] = { - [sym_function_modifiers] = STATE(2240), - [sym_higher_ranked_trait_bound] = STATE(1503), - [sym_removed_trait_bound] = STATE(1503), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1507), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(1509), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [527] = { + [sym_function_modifiers] = STATE(2206), + [sym_higher_ranked_trait_bound] = STATE(1502), + [sym_removed_trait_bound] = STATE(1502), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1492), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1490), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(2169), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -54778,19 +54577,19 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), + [anon_sym_dyn] = ACTIONS(702), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), @@ -54798,32 +54597,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [531] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1714), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [528] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1664), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2177), + [anon_sym_RPAREN] = ACTIONS(2173), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), @@ -54843,53 +54642,53 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(780), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [532] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1667), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [529] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1678), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_u8] = ACTIONS(1894), @@ -54910,57 +54709,57 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2181), + [sym_self] = ACTIONS(2177), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [533] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1741), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [530] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1685), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2183), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(796), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), [anon_sym_u16] = ACTIONS(1894), @@ -54979,56 +54778,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(804), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(800), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [534] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1739), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [531] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1731), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(2179), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(782), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), [anon_sym_u16] = ACTIONS(1894), @@ -55047,55 +54846,122 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(786), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(2181), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [535] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [532] = { + [sym_function_modifiers] = STATE(2206), + [sym_higher_ranked_trait_bound] = STATE(1502), + [sym_removed_trait_bound] = STATE(1502), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1501), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1497), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym_block_comment] = ACTIONS(3), + }, + [533] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1678), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2185), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), @@ -55115,55 +54981,259 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(1902), + [sym_self] = ACTIONS(2183), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), + [sym_block_comment] = ACTIONS(3), + }, + [534] = { + [sym_function_modifiers] = STATE(2206), + [sym_higher_ranked_trait_bound] = STATE(1502), + [sym_removed_trait_bound] = STATE(1502), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1492), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(1497), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), + [sym_block_comment] = ACTIONS(3), + }, + [535] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(2042), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(2187), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(862), + [sym_super] = ACTIONS(862), + [sym_crate] = ACTIONS(862), + [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, [536] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [sym_function_modifiers] = STATE(2243), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(965), + [sym_bracketed_type] = STATE(2331), + [sym_lifetime] = STATE(2200), + [sym_array_type] = STATE(977), + [sym_for_lifetimes] = STATE(1220), + [sym_function_type] = STATE(977), + [sym_tuple_type] = STATE(977), + [sym_unit_type] = STATE(977), + [sym_generic_type] = STATE(894), + [sym_generic_type_with_turbofish] = STATE(2332), + [sym_bounded_type] = STATE(977), + [sym_reference_type] = STATE(977), + [sym_pointer_type] = STATE(977), + [sym_empty_type] = STATE(977), + [sym_abstract_type] = STATE(977), + [sym_dynamic_type] = STATE(977), + [sym_macro_invocation] = STATE(977), + [sym_scoped_identifier] = STATE(2174), + [sym_scoped_type_identifier] = STATE(712), + [aux_sym_function_modifiers_repeat1] = STATE(1482), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u128] = ACTIONS(2199), + [anon_sym_i128] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_str] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(77), + [anon_sym_COLON_COLON] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_dyn] = ACTIONS(2211), + [sym_mutable_specifier] = ACTIONS(2213), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2217), + [sym_block_comment] = ACTIONS(3), + }, + [537] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2187), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(2219), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), [anon_sym_u16] = ACTIONS(1894), @@ -55182,54 +55252,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [537] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [538] = { + [sym_attribute_item] = STATE(538), + [aux_sym_enum_variant_list_repeat1] = STATE(538), + [sym_identifier] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_RBRACK] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_COMMA] = ACTIONS(2223), + [anon_sym_ref] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym__] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2223), + [sym_mutable_specifier] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_move] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [sym_line_comment] = ACTIONS(3), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2223), + [sym_raw_string_literal] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), + [sym_block_comment] = ACTIONS(3), + }, + [539] = { + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_RPAREN] = ACTIONS(2228), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), @@ -55249,56 +55386,56 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, - [538] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(2081), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [540] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -55317,122 +55454,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(2193), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(2230), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), + [sym_self] = ACTIONS(2232), [sym_super] = ACTIONS(862), [sym_crate] = ACTIONS(862), [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [539] = { - [sym_attribute_item] = STATE(539), - [aux_sym_enum_variant_list_repeat1] = STATE(539), - [sym_identifier] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_COMMA] = ACTIONS(2197), - [anon_sym_ref] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_COLON_COLON] = ACTIONS(2197), - [anon_sym__] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2197), - [sym_mutable_specifier] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_move] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2197), - [aux_sym_string_literal_token1] = ACTIONS(2197), - [sym_char_literal] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2197), - [sym_raw_string_literal] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), - [sym_block_comment] = ACTIONS(3), - }, - [540] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), + [541] = { + [sym_function_modifiers] = STATE(2206), + [sym_extern_modifier] = STATE(1482), + [sym__type] = STATE(1331), + [sym_bracketed_type] = STATE(2241), + [sym_lifetime] = STATE(2204), + [sym_array_type] = STATE(1332), + [sym_for_lifetimes] = STATE(1222), + [sym_function_type] = STATE(1332), + [sym_tuple_type] = STATE(1332), + [sym_unit_type] = STATE(1332), + [sym_generic_type] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2242), + [sym_bounded_type] = STATE(1332), + [sym_reference_type] = STATE(1332), + [sym_pointer_type] = STATE(1332), + [sym_empty_type] = STATE(1332), + [sym_abstract_type] = STATE(1332), + [sym_dynamic_type] = STATE(1332), + [sym_macro_invocation] = STATE(1332), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(1259), + [aux_sym_function_modifiers_repeat1] = STATE(1482), [sym_identifier] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(664), [anon_sym_u8] = ACTIONS(852), [anon_sym_i8] = ACTIONS(852), [anon_sym_u16] = ACTIONS(852), @@ -55451,185 +55521,118 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(852), [anon_sym_char] = ACTIONS(852), [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(676), + [anon_sym_for] = ACTIONS(678), + [anon_sym_impl] = ACTIONS(680), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_extern] = ACTIONS(690), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(856), [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(2202), + [anon_sym_dyn] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(2234), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2204), + [sym_self] = ACTIONS(862), [sym_super] = ACTIONS(862), [sym_crate] = ACTIONS(862), [sym_metavariable] = ACTIONS(864), [sym_block_comment] = ACTIONS(3), }, - [541] = { - [sym_function_modifiers] = STATE(2234), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1005), - [sym_bracketed_type] = STATE(2328), - [sym_lifetime] = STATE(2233), - [sym_array_type] = STATE(986), - [sym_for_lifetimes] = STATE(1218), - [sym_function_type] = STATE(986), - [sym_tuple_type] = STATE(986), - [sym_unit_type] = STATE(986), - [sym_generic_type] = STATE(781), - [sym_generic_type_with_turbofish] = STATE(2329), - [sym_bounded_type] = STATE(986), - [sym_reference_type] = STATE(986), - [sym_pointer_type] = STATE(986), - [sym_empty_type] = STATE(986), - [sym_abstract_type] = STATE(986), - [sym_dynamic_type] = STATE(986), - [sym_macro_invocation] = STATE(986), - [sym_scoped_identifier] = STATE(2161), - [sym_scoped_type_identifier] = STATE(717), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_u8] = ACTIONS(2216), - [anon_sym_i8] = ACTIONS(2216), - [anon_sym_u16] = ACTIONS(2216), - [anon_sym_i16] = ACTIONS(2216), - [anon_sym_u32] = ACTIONS(2216), - [anon_sym_i32] = ACTIONS(2216), - [anon_sym_u64] = ACTIONS(2216), - [anon_sym_i64] = ACTIONS(2216), - [anon_sym_u128] = ACTIONS(2216), - [anon_sym_i128] = ACTIONS(2216), - [anon_sym_isize] = ACTIONS(2216), - [anon_sym_usize] = ACTIONS(2216), - [anon_sym_f32] = ACTIONS(2216), - [anon_sym_f64] = ACTIONS(2216), - [anon_sym_bool] = ACTIONS(2216), - [anon_sym_str] = ACTIONS(2216), - [anon_sym_char] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(2222), - [anon_sym_extern] = ACTIONS(672), - [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(2224), - [anon_sym_AMP] = ACTIONS(2226), - [anon_sym_dyn] = ACTIONS(2228), - [sym_mutable_specifier] = ACTIONS(2230), - [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(2232), - [sym_super] = ACTIONS(2232), - [sym_crate] = ACTIONS(2232), - [sym_metavariable] = ACTIONS(2234), - [sym_block_comment] = ACTIONS(3), - }, [542] = { - [sym_function_modifiers] = STATE(2240), - [sym_extern_modifier] = STATE(1486), - [sym__type] = STATE(1309), - [sym_bracketed_type] = STATE(2230), - [sym_lifetime] = STATE(2279), - [sym_array_type] = STATE(1329), - [sym_for_lifetimes] = STATE(1219), - [sym_function_type] = STATE(1329), - [sym_tuple_type] = STATE(1329), - [sym_unit_type] = STATE(1329), - [sym_generic_type] = STATE(1279), - [sym_generic_type_with_turbofish] = STATE(2231), - [sym_bounded_type] = STATE(1329), - [sym_reference_type] = STATE(1329), - [sym_pointer_type] = STATE(1329), - [sym_empty_type] = STATE(1329), - [sym_abstract_type] = STATE(1329), - [sym_dynamic_type] = STATE(1329), - [sym_macro_invocation] = STATE(1329), - [sym_scoped_identifier] = STATE(2141), - [sym_scoped_type_identifier] = STATE(1254), - [aux_sym_function_modifiers_repeat1] = STATE(1486), - [sym_identifier] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(846), - [anon_sym_LBRACK] = ACTIONS(850), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(646), - [anon_sym_u8] = ACTIONS(852), - [anon_sym_i8] = ACTIONS(852), - [anon_sym_u16] = ACTIONS(852), - [anon_sym_i16] = ACTIONS(852), - [anon_sym_u32] = ACTIONS(852), - [anon_sym_i32] = ACTIONS(852), - [anon_sym_u64] = ACTIONS(852), - [anon_sym_i64] = ACTIONS(852), - [anon_sym_u128] = ACTIONS(852), - [anon_sym_i128] = ACTIONS(852), - [anon_sym_isize] = ACTIONS(852), - [anon_sym_usize] = ACTIONS(852), - [anon_sym_f32] = ACTIONS(852), - [anon_sym_f64] = ACTIONS(852), - [anon_sym_bool] = ACTIONS(852), - [anon_sym_str] = ACTIONS(852), - [anon_sym_char] = ACTIONS(852), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(652), - [anon_sym_const] = ACTIONS(652), - [anon_sym_default] = ACTIONS(652), - [anon_sym_fn] = ACTIONS(658), - [anon_sym_for] = ACTIONS(660), - [anon_sym_impl] = ACTIONS(662), - [anon_sym_unsafe] = ACTIONS(652), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_extern] = ACTIONS(672), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), - [anon_sym_COLON_COLON] = ACTIONS(856), - [anon_sym_AMP] = ACTIONS(858), - [anon_sym_dyn] = ACTIONS(684), - [sym_mutable_specifier] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym__] = ACTIONS(782), + [anon_sym_AMP] = ACTIONS(1900), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), - [sym_self] = ACTIONS(862), - [sym_super] = ACTIONS(862), - [sym_crate] = ACTIONS(862), - [sym_metavariable] = ACTIONS(864), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [543] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_RBRACK] = ACTIONS(2238), @@ -55651,52 +55654,52 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [544] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), [anon_sym_RPAREN] = ACTIONS(2240), [anon_sym_LBRACK] = ACTIONS(1892), @@ -55718,55 +55721,55 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, [545] = { - [sym_bracketed_type] = STATE(2183), - [sym_generic_type] = STATE(2296), - [sym_generic_type_with_turbofish] = STATE(2295), - [sym_scoped_identifier] = STATE(1268), - [sym_scoped_type_identifier] = STATE(1792), - [sym_const_block] = STATE(1368), - [sym__pattern] = STATE(1682), - [sym_tuple_pattern] = STATE(1368), - [sym_slice_pattern] = STATE(1368), - [sym_tuple_struct_pattern] = STATE(1368), - [sym_struct_pattern] = STATE(1368), - [sym_remaining_field_pattern] = STATE(1368), - [sym_mut_pattern] = STATE(1368), - [sym_range_pattern] = STATE(1368), - [sym_ref_pattern] = STATE(1368), - [sym_captured_pattern] = STATE(1368), - [sym_reference_pattern] = STATE(1368), - [sym_or_pattern] = STATE(1368), - [sym__literal_pattern] = STATE(1324), - [sym_negative_literal] = STATE(1328), - [sym_string_literal] = STATE(1328), - [sym_boolean_literal] = STATE(1328), - [sym_identifier] = ACTIONS(2155), + [sym_bracketed_type] = STATE(2234), + [sym_generic_type] = STATE(2233), + [sym_generic_type_with_turbofish] = STATE(2228), + [sym_scoped_identifier] = STATE(1271), + [sym_scoped_type_identifier] = STATE(1839), + [sym_const_block] = STATE(1370), + [sym__pattern] = STATE(1705), + [sym_tuple_pattern] = STATE(1370), + [sym_slice_pattern] = STATE(1370), + [sym_tuple_struct_pattern] = STATE(1370), + [sym_struct_pattern] = STATE(1370), + [sym_remaining_field_pattern] = STATE(1370), + [sym_mut_pattern] = STATE(1370), + [sym_range_pattern] = STATE(1370), + [sym_ref_pattern] = STATE(1370), + [sym_captured_pattern] = STATE(1370), + [sym_reference_pattern] = STATE(1370), + [sym_or_pattern] = STATE(1370), + [sym__literal_pattern] = STATE(1327), + [sym_negative_literal] = STATE(1309), + [sym_string_literal] = STATE(1309), + [sym_boolean_literal] = STATE(1309), + [sym_identifier] = ACTIONS(2139), [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_RPAREN] = ACTIONS(2242), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(2242), [anon_sym_u8] = ACTIONS(1894), [anon_sym_i8] = ACTIONS(1894), [anon_sym_u16] = ACTIONS(1894), @@ -55785,26 +55788,26 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1894), [anon_sym_char] = ACTIONS(1894), [anon_sym_const] = ACTIONS(1896), - [anon_sym_ref] = ACTIONS(674), + [anon_sym_ref] = ACTIONS(692), [anon_sym_LT] = ACTIONS(77), [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym__] = ACTIONS(790), + [anon_sym__] = ACTIONS(782), [anon_sym_AMP] = ACTIONS(1900), - [sym_mutable_specifier] = ACTIONS(794), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(690), - [sym_integer_literal] = ACTIONS(692), - [aux_sym_string_literal_token1] = ACTIONS(694), - [sym_char_literal] = ACTIONS(692), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), + [sym_mutable_specifier] = ACTIONS(786), + [anon_sym_DOT_DOT] = ACTIONS(788), + [anon_sym_DASH] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(710), + [aux_sym_string_literal_token1] = ACTIONS(712), + [sym_char_literal] = ACTIONS(710), + [anon_sym_true] = ACTIONS(714), + [anon_sym_false] = ACTIONS(714), [sym_line_comment] = ACTIONS(3), [sym_self] = ACTIONS(1902), [sym_super] = ACTIONS(1902), [sym_crate] = ACTIONS(1902), [sym_metavariable] = ACTIONS(1904), - [sym_raw_string_literal] = ACTIONS(692), - [sym_float_literal] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(710), + [sym_float_literal] = ACTIONS(710), [sym_block_comment] = ACTIONS(3), }, }; @@ -55813,17 +55816,17 @@ static uint16_t ts_small_parse_table[] = { [0] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -55837,42 +55840,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1356), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2054), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -55904,21 +55907,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_str, anon_sym_char, [121] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -55930,46 +55931,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(2244), 1, - anon_sym_RPAREN, - STATE(1219), 1, + sym_identifier, + ACTIONS(2246), 1, + anon_sym_LT, + STATE(673), 1, + sym_type_parameters, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1486), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1600), 1, sym_generic_type, - STATE(1973), 1, + STATE(1601), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -56002,17 +56005,17 @@ static uint16_t ts_small_parse_table[] = { [248] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56026,42 +56029,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2101), 1, + STATE(2017), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56092,20 +56095,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [369] = 28, + [369] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, + ACTIONS(678), 1, + anon_sym_for, ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2209), 1, + anon_sym_AMP, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, + sym_metavariable, + ACTIONS(2248), 1, + anon_sym_SQUOTE, + ACTIONS(2250), 1, + sym_mutable_specifier, + STATE(536), 1, + sym_lifetime, + STATE(712), 1, + sym_scoped_type_identifier, + STATE(894), 1, + sym_generic_type, + STATE(1013), 1, + sym__type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, + sym_scoped_identifier, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, + sym_bracketed_type, + STATE(2332), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2215), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(977), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2199), 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, + [496] = 28, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56119,42 +56218,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1699), 1, + STATE(1705), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, + STATE(2228), 1, + sym_generic_type_with_turbofish, + STATE(2233), 1, + sym_generic_type, + STATE(2234), 1, sym_bracketed_type, - STATE(2295), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1902), 3, + sym_self, + sym_super, + sym_crate, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1370), 12, + sym_const_block, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_or_pattern, + ACTIONS(1894), 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, + [617] = 28, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(782), 1, + anon_sym__, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1896), 1, + anon_sym_const, + ACTIONS(1898), 1, + anon_sym_COLON_COLON, + ACTIONS(1900), 1, + anon_sym_AMP, + ACTIONS(1904), 1, + sym_metavariable, + ACTIONS(2139), 1, + sym_identifier, + STATE(1271), 1, + sym_scoped_identifier, + STATE(1327), 1, + sym__literal_pattern, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(1981), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56185,20 +56377,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [490] = 28, + [738] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56212,42 +56404,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1359), 1, + STATE(1754), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56278,20 +56470,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [611] = 28, + [859] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56305,42 +56497,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(1835), 1, + STATE(1689), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56371,20 +56563,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [732] = 28, + [980] = 31, + ACTIONS(664), 1, + anon_sym_STAR, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, + anon_sym_BANG, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, + anon_sym_COLON_COLON, + ACTIONS(858), 1, + anon_sym_AMP, + ACTIONS(864), 1, + sym_metavariable, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2246), 1, + anon_sym_LT, + ACTIONS(2252), 1, + sym_identifier, + STATE(663), 1, + sym_type_parameters, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1447), 1, + sym_scoped_type_identifier, + STATE(1603), 1, + sym__type, + STATE(1648), 1, + sym_generic_type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, + sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 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, + [1107] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56398,42 +56686,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2135), 1, + STATE(2050), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56464,20 +56752,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [853] = 28, + [1228] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56491,42 +56779,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(2178), 1, + STATE(1374), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56557,22 +56845,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [974] = 31, + [1349] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -56588,42 +56876,42 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2254), 1, + anon_sym_RPAREN, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1833), 1, + STATE(1744), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2213), 1, - sym_qualified_type, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -56653,20 +56941,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1101] = 28, + [1476] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -56680,42 +56966,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + ACTIONS(2256), 1, + sym_mutable_specifier, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(2019), 1, + STATE(1369), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -56746,175 +57034,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1222] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, + [1597] = 31, + ACTIONS(664), 1, + anon_sym_STAR, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, + anon_sym_BANG, ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(790), 1, - anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(850), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(864), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2246), 1, + anon_sym_LT, + ACTIONS(2258), 1, sym_identifier, - STATE(1268), 1, - sym_scoped_identifier, - STATE(1324), 1, - sym__literal_pattern, - STATE(1792), 1, + STATE(681), 1, + sym_type_parameters, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1446), 1, sym_scoped_type_identifier, - STATE(2018), 1, - sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, - sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(1602), 1, + sym__type, + STATE(1651), 1, sym_generic_type, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, - sym_self, - sym_super, - sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1368), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 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, - [1343] = 28, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, - ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(790), 1, - anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, - anon_sym_LPAREN, - ACTIONS(1892), 1, - anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, - anon_sym_COLON_COLON, - ACTIONS(1900), 1, - anon_sym_AMP, - ACTIONS(1904), 1, - sym_metavariable, - ACTIONS(2155), 1, - sym_identifier, - STATE(1268), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(1324), 1, - sym__literal_pattern, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(2017), 1, - sym__pattern, - STATE(2183), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2295), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1368), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -56932,22 +57130,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1464] = 31, + [1724] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -56963,138 +57161,42 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2246), 1, + ACTIONS(2260), 1, anon_sym_RPAREN, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1973), 1, + STATE(1886), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, + STATE(2204), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [1591] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2248), 1, - anon_sym_RPAREN, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, - sym_scoped_type_identifier, - STATE(1279), 1, - sym_generic_type, - STATE(1713), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -57124,22 +57226,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1718] = 31, + [1851] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -57153,44 +57255,44 @@ static uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(2067), 1, sym_identifier, - ACTIONS(2071), 1, + ACTIONS(2248), 1, anon_sym_SQUOTE, - ACTIONS(2250), 1, - anon_sym_RPAREN, - STATE(1219), 1, + ACTIONS(2262), 1, + sym_mutable_specifier, + STATE(541), 1, + sym_lifetime, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1973), 1, + STATE(1311), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -57220,20 +57322,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1845] = 28, + [1978] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57247,42 +57349,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1364), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2012), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57313,18 +57415,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1966] = 28, + [2099] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(796), 1, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57338,44 +57442,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - ACTIONS(2252), 1, - sym_mutable_specifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1357), 1, + STATE(1364), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57406,20 +57508,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2087] = 28, + [2220] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57433,42 +57535,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1361), 1, + STATE(1732), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57499,20 +57601,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2208] = 28, + [2341] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57526,42 +57628,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, - sym_scoped_type_identifier, - STATE(2033), 1, + STATE(1387), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57592,82 +57694,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2329] = 28, + [2462] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, + ACTIONS(664), 1, + anon_sym_STAR, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, + anon_sym_BANG, ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(790), 1, - anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(850), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(864), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2067), 1, sym_identifier, - STATE(1268), 1, - sym_scoped_identifier, - STATE(1324), 1, - sym__literal_pattern, - STATE(1792), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2264), 1, + anon_sym_RPAREN, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(2036), 1, - sym__pattern, - STATE(2183), 1, + STATE(1288), 1, + sym_generic_type, + STATE(1886), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2295), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1368), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -57685,18 +57790,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2450] = 28, + [2589] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57710,44 +57815,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - ACTIONS(2254), 1, + ACTIONS(2266), 1, sym_mutable_specifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1671), 1, + STATE(1712), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57778,20 +57883,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2571] = 28, + [2710] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57805,42 +57910,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1380), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2003), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -57871,20 +57976,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2692] = 31, - ACTIONS(646), 1, + [2831] = 31, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -57896,48 +58003,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, + ACTIONS(2067), 1, + sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2256), 1, - sym_identifier, - ACTIONS(2258), 1, - anon_sym_LT, - STATE(652), 1, - sym_type_parameters, - STATE(1219), 1, + ACTIONS(2268), 1, + anon_sym_RPAREN, + STATE(1222), 1, sym_for_lifetimes, - STATE(1481), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1609), 1, + STATE(1288), 1, sym_generic_type, - STATE(1642), 1, + STATE(1886), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -57967,20 +58072,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2819] = 28, + [2958] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -57994,42 +58099,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1716), 1, + STATE(1382), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, + STATE(2228), 1, + sym_generic_type_with_turbofish, + STATE(2233), 1, + sym_generic_type, + STATE(2234), 1, sym_bracketed_type, - STATE(2295), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1902), 3, + sym_self, + sym_super, + sym_crate, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1370), 12, + sym_const_block, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_or_pattern, + ACTIONS(1894), 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, + [3079] = 28, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(782), 1, + anon_sym__, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1896), 1, + anon_sym_const, + ACTIONS(1898), 1, + anon_sym_COLON_COLON, + ACTIONS(1900), 1, + anon_sym_AMP, + ACTIONS(1904), 1, + sym_metavariable, + ACTIONS(2139), 1, + sym_identifier, + STATE(1271), 1, + sym_scoped_identifier, + STATE(1327), 1, + sym__literal_pattern, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2060), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -58060,20 +58258,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2940] = 31, - ACTIONS(646), 1, + [3200] = 31, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -58085,48 +58285,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, + ACTIONS(2067), 1, + sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2258), 1, - anon_sym_LT, - ACTIONS(2260), 1, - sym_identifier, - STATE(697), 1, - sym_type_parameters, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1475), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1594), 1, - sym__type, - STATE(1595), 1, + STATE(1288), 1, sym_generic_type, - STATE(2141), 1, + STATE(1937), 1, + sym__type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, + STATE(2327), 1, + sym_qualified_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -58156,20 +58354,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3067] = 31, - ACTIONS(646), 1, + [3327] = 31, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -58181,48 +58381,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2258), 1, - anon_sym_LT, - ACTIONS(2262), 1, + ACTIONS(2067), 1, sym_identifier, - STATE(599), 1, - sym_type_parameters, - STATE(1219), 1, + ACTIONS(2248), 1, + anon_sym_SQUOTE, + ACTIONS(2270), 1, + sym_mutable_specifier, + STATE(535), 1, + sym_lifetime, + STATE(1222), 1, sym_for_lifetimes, - STATE(1455), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1613), 1, - sym__type, - STATE(1617), 1, + STATE(1288), 1, sym_generic_type, - STATE(2141), 1, + STATE(2030), 1, + sym__type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -58252,82 +58450,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3194] = 28, + [3454] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, + ACTIONS(664), 1, + anon_sym_STAR, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, + anon_sym_BANG, ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(790), 1, - anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(850), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(864), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2067), 1, sym_identifier, - STATE(1268), 1, - sym_scoped_identifier, - STATE(1324), 1, - sym__literal_pattern, - STATE(1792), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2272), 1, + anon_sym_RPAREN, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(2025), 1, - sym__pattern, - STATE(2183), 1, + STATE(1288), 1, + sym_generic_type, + STATE(1699), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2295), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1368), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -58345,20 +58546,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3315] = 28, + [3581] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, - sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -58372,42 +58571,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + ACTIONS(2274), 1, + sym_mutable_specifier, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1773), 1, + STATE(1694), 1, sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -58438,22 +58639,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3436] = 31, + [3702] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -58469,42 +58670,42 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2264), 1, + ACTIONS(2276), 1, anon_sym_RPAREN, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1696), 1, + STATE(1886), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -58534,22 +58735,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3563] = 31, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(646), 1, + [3829] = 31, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -58561,46 +58760,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2266), 1, + ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2268), 1, - sym_mutable_specifier, - STATE(538), 1, - sym_lifetime, - STATE(1219), 1, + ACTIONS(2246), 1, + anon_sym_LT, + ACTIONS(2278), 1, + sym_identifier, + STATE(606), 1, + sym_type_parameters, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1448), 1, sym_scoped_type_identifier, - STATE(1279), 1, - sym_generic_type, - STATE(2057), 1, + STATE(1592), 1, sym__type, - STATE(2141), 1, + STATE(1593), 1, + sym_generic_type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -58630,20 +58831,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3690] = 28, + [3956] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -58657,42 +58858,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2012), 1, + STATE(2161), 1, sym__pattern, - STATE(2183), 1, + STATE(2228), 1, + sym_generic_type_with_turbofish, + STATE(2233), 1, + sym_generic_type, + STATE(2234), 1, sym_bracketed_type, - STATE(2295), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1902), 3, + sym_self, + sym_super, + sym_crate, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1370), 12, + sym_const_block, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_or_pattern, + ACTIONS(1894), 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, + [4077] = 28, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(782), 1, + anon_sym__, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(1888), 1, + anon_sym_LPAREN, + ACTIONS(1892), 1, + anon_sym_LBRACK, + ACTIONS(1896), 1, + anon_sym_const, + ACTIONS(1898), 1, + anon_sym_COLON_COLON, + ACTIONS(1900), 1, + anon_sym_AMP, + ACTIONS(1904), 1, + sym_metavariable, + ACTIONS(2139), 1, + sym_identifier, + STATE(1271), 1, + sym_scoped_identifier, + STATE(1327), 1, + sym__literal_pattern, + STATE(1366), 1, + sym__pattern, + STATE(1839), 1, + sym_scoped_type_identifier, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -58723,20 +59017,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3811] = 28, + [4198] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -58750,42 +59044,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2009), 1, + STATE(2038), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -58816,20 +59110,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3932] = 28, + [4319] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -58843,42 +59137,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1682), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(1877), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -58909,18 +59203,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4053] = 28, + [4440] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(796), 1, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -58934,44 +59230,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - ACTIONS(2270), 1, - sym_mutable_specifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1691), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2033), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -59002,20 +59296,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4174] = 28, + [4561] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -59029,42 +59323,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2065), 1, + STATE(2029), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -59095,85 +59389,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4295] = 31, + [4682] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(782), 1, + anon_sym__, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(1888), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(1896), 1, + anon_sym_const, + ACTIONS(1898), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2067), 1, + ACTIONS(2139), 1, sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2272), 1, - anon_sym_RPAREN, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(1271), 1, + sym_scoped_identifier, + STATE(1327), 1, + sym__literal_pattern, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(2028), 1, + sym__pattern, + STATE(2228), 1, + sym_generic_type_with_turbofish, + STATE(2233), 1, sym_generic_type, - STATE(1973), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(2234), 1, sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 17, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1370), 12, + sym_const_block, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_or_pattern, + ACTIONS(1894), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59191,85 +59482,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4422] = 31, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + [4803] = 28, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(692), 1, + anon_sym_ref, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(782), 1, + anon_sym__, + ACTIONS(786), 1, + sym_mutable_specifier, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(1888), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(1892), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(1896), 1, + anon_sym_const, + ACTIONS(1898), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(1900), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2258), 1, - anon_sym_LT, - ACTIONS(2274), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(638), 1, - sym_type_parameters, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1454), 1, + STATE(1271), 1, + sym_scoped_identifier, + STATE(1327), 1, + sym__literal_pattern, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(1597), 1, + STATE(2027), 1, + sym__pattern, + STATE(2228), 1, + sym_generic_type_with_turbofish, + STATE(2233), 1, sym_generic_type, - STATE(1643), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(2234), 1, sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 17, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(1370), 12, + sym_const_block, + sym_tuple_pattern, + sym_slice_pattern, + sym_tuple_struct_pattern, + sym_struct_pattern, + sym_remaining_field_pattern, + sym_mut_pattern, + sym_range_pattern, + sym_ref_pattern, + sym_captured_pattern, + sym_reference_pattern, + sym_or_pattern, + ACTIONS(1894), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59287,20 +59575,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4549] = 28, + [4924] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -59314,42 +59602,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2047), 1, + STATE(2020), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -59380,20 +59668,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4670] = 28, + [5045] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -59407,42 +59695,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2115), 1, + STATE(2019), 1, sym__pattern, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -59473,20 +59761,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4791] = 28, + [5166] = 28, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(674), 1, + ACTIONS(692), 1, anon_sym_ref, - ACTIONS(690), 1, + ACTIONS(708), 1, anon_sym_DASH, - ACTIONS(694), 1, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(790), 1, + ACTIONS(782), 1, anon_sym__, - ACTIONS(794), 1, + ACTIONS(786), 1, sym_mutable_specifier, - ACTIONS(796), 1, + ACTIONS(788), 1, anon_sym_DOT_DOT, ACTIONS(1888), 1, anon_sym_LPAREN, @@ -59500,42 +59788,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(1904), 1, sym_metavariable, - ACTIONS(2155), 1, + ACTIONS(2139), 1, sym_identifier, - STATE(1268), 1, + STATE(1271), 1, sym_scoped_identifier, - STATE(1324), 1, + STATE(1327), 1, sym__literal_pattern, - STATE(1764), 1, - sym__pattern, - STATE(1792), 1, + STATE(1839), 1, sym_scoped_type_identifier, - STATE(2183), 1, - sym_bracketed_type, - STATE(2295), 1, + STATE(2117), 1, + sym__pattern, + STATE(2228), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, + STATE(2233), 1, sym_generic_type, + STATE(2234), 1, + sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, + ACTIONS(714), 2, anon_sym_true, anon_sym_false, ACTIONS(1902), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, + STATE(1309), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(692), 4, + ACTIONS(710), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(1368), 12, + STATE(1370), 12, sym_const_block, sym_tuple_pattern, sym_slice_pattern, @@ -59566,73 +59854,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4912] = 31, + [5287] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2266), 1, - anon_sym_SQUOTE, - ACTIONS(2276), 1, - sym_mutable_specifier, - STATE(542), 1, - sym_lifetime, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1306), 1, + STATE(969), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -59644,7 +59930,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59662,73 +59948,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5039] = 31, + [5411] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - ACTIONS(2266), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2278), 1, - sym_mutable_specifier, - STATE(541), 1, - sym_lifetime, - STATE(717), 1, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(1014), 1, + STATE(1640), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2234), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -59740,7 +60024,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59758,82 +60042,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5166] = 28, - ACTIONS(77), 1, + [5535] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1157), 20, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(674), 1, - anon_sym_ref, - ACTIONS(690), 1, + anon_sym_COLON_COLON, + anon_sym_AMP, + anon_sym_DOT_DOT, anon_sym_DASH, - ACTIONS(694), 1, + anon_sym_PIPE, + sym_integer_literal, aux_sym_string_literal_token1, - ACTIONS(790), 1, + sym_char_literal, + sym_metavariable, + ACTIONS(1159), 41, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_break, + anon_sym_const, + anon_sym_continue, + anon_sym_default, + anon_sym_for, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_ref, anon_sym__, - ACTIONS(794), 1, sym_mutable_specifier, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(1888), 1, + anon_sym_move, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5605] = 30, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(1892), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(1896), 1, - anon_sym_const, - ACTIONS(1898), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(1900), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(1904), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2155), 1, - sym_identifier, - STATE(1268), 1, - sym_scoped_identifier, - STATE(1324), 1, - sym__literal_pattern, - STATE(1792), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(2020), 1, - sym__pattern, - STATE(2183), 1, + STATE(894), 1, + sym_generic_type, + STATE(973), 1, + sym__type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, + sym_scoped_identifier, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2295), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, - sym_generic_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(1902), 3, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(1368), 12, - sym_const_block, - sym_tuple_pattern, - sym_slice_pattern, - sym_tuple_struct_pattern, - sym_struct_pattern, - sym_remaining_field_pattern, - sym_mut_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_captured_pattern, - sym_reference_pattern, - sym_or_pattern, - ACTIONS(1894), 17, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(977), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -59851,22 +60203,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5287] = 30, + [5729] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -59882,40 +60234,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1816), 1, + STATE(1574), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -59945,71 +60297,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5411] = 30, + [5853] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1537), 1, + STATE(968), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60021,7 +60373,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60039,71 +60391,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5535] = 30, + [5977] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(2079), 1, + STATE(1001), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60115,7 +60467,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60133,22 +60485,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5659] = 30, + [6101] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60164,40 +60516,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1575), 1, + STATE(1572), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60227,22 +60579,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5783] = 30, + [6225] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60258,40 +60610,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2155), 1, + STATE(1945), 1, sym__type, - STATE(2230), 1, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60321,165 +60673,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5907] = 30, + [6349] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, - sym_scoped_type_identifier, - STATE(1279), 1, - sym_generic_type, - STATE(2081), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [6031] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(2201), 1, anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(662), 1, + ACTIONS(2203), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(2205), 1, anon_sym_BANG, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1808), 1, + STATE(984), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60491,7 +60749,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -60509,22 +60767,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6155] = 30, + [6473] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60540,40 +60798,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1618), 1, + STATE(1744), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60603,22 +60861,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6279] = 30, + [6597] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60634,40 +60892,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1760), 1, + STATE(1959), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60697,22 +60955,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6403] = 30, + [6721] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60728,134 +60986,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1644), 1, + STATE(1828), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, + STATE(2204), 1, sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [6527] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, - anon_sym_LPAREN, - ACTIONS(850), 1, - anon_sym_LBRACK, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(858), 1, - anon_sym_AMP, - ACTIONS(864), 1, - sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2280), 1, - sym_identifier, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1441), 1, - sym_scoped_type_identifier, - STATE(1634), 1, - sym_generic_type, - STATE(1635), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60885,22 +61049,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6651] = 30, + [6845] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -60916,40 +61080,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1651), 1, + STATE(1589), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -60979,22 +61143,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6775] = 30, + [6969] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61010,40 +61174,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1527), 1, + STATE(1622), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61073,22 +61237,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6899] = 30, + [7093] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61104,40 +61268,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2122), 1, + STATE(1860), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61167,22 +61331,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7023] = 30, + [7217] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61198,40 +61362,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1827), 1, + STATE(1790), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61261,22 +61425,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7147] = 30, + [7341] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61288,44 +61452,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2280), 1, + sym_identifier, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1473), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1626), 1, sym_generic_type, - STATE(1755), 1, + STATE(1627), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61355,22 +61519,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7271] = 30, + [7465] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61386,40 +61550,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1322), 1, + STATE(2143), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61449,22 +61613,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7395] = 30, + [7589] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61480,40 +61644,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1319), 1, + STATE(1745), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61543,22 +61707,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7519] = 30, + [7713] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61574,40 +61738,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1543), 1, + STATE(1326), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61637,22 +61801,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7643] = 30, + [7837] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61668,40 +61832,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2110), 1, + STATE(1720), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61731,22 +61895,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7767] = 30, + [7961] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61762,40 +61926,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1969), 1, + STATE(1903), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61825,22 +61989,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [7891] = 30, + [8085] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -61856,40 +62020,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1323), 1, + STATE(1944), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61919,71 +62083,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8015] = 30, + [8209] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1321), 1, + STATE(1046), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -61995,7 +62159,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62013,22 +62177,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8139] = 30, + [8333] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62044,40 +62208,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2100), 1, + STATE(1874), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62107,22 +62271,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8263] = 30, + [8457] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62138,40 +62302,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1318), 1, + STATE(1709), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62201,22 +62365,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8387] = 30, + [8581] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62232,40 +62396,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1810), 1, + STATE(1718), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62295,71 +62459,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8511] = 30, + [8705] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(1049), 1, + STATE(1915), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62371,7 +62535,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62389,71 +62553,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8635] = 30, + [8829] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(1028), 1, + STATE(1919), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62465,7 +62629,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62483,22 +62647,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8759] = 30, + [8953] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62514,40 +62678,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1948), 1, + STATE(1851), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62577,71 +62741,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [8883] = 30, + [9077] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(958), 1, + STATE(1320), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62653,7 +62817,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62671,71 +62835,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9007] = 30, + [9201] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1818), 1, + STATE(991), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62747,7 +62911,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -62765,22 +62929,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9131] = 30, + [9325] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62796,40 +62960,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1310), 1, + STATE(1307), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62859,22 +63023,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9255] = 30, + [9449] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62890,40 +63054,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1538), 1, + STATE(2036), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -62953,22 +63117,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9379] = 30, + [9573] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -62984,40 +63148,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1311), 1, + STATE(1620), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63047,71 +63211,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9503] = 30, + [9697] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, + ACTIONS(664), 1, + anon_sym_STAR, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(672), 1, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, + anon_sym_BANG, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(850), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(856), 1, + anon_sym_COLON_COLON, + ACTIONS(858), 1, + anon_sym_AMP, + ACTIONS(864), 1, + sym_metavariable, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, + sym_scoped_type_identifier, + STATE(1288), 1, + sym_generic_type, + STATE(2042), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, + sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 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, + [9821] = 30, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(957), 1, + STATE(1666), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63123,7 +63381,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63141,22 +63399,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9627] = 30, + [9945] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63172,40 +63430,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1584), 1, + STATE(1587), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63235,22 +63493,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9751] = 30, + [10069] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63266,40 +63524,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1766), 1, + STATE(2053), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63329,71 +63587,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9875] = 30, + [10193] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2206), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2208), 1, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(2201), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(2203), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(2205), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(2228), 1, + ACTIONS(2211), 1, anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(2217), 1, sym_metavariable, - STATE(717), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(894), 1, sym_generic_type, - STATE(1044), 1, + STATE(971), 1, sym__type, - STATE(1218), 1, + STATE(1220), 1, sym_for_lifetimes, - STATE(2161), 1, + STATE(2174), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2200), 1, sym_lifetime, - STATE(2234), 1, + STATE(2243), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2331), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63405,7 +63663,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63423,22 +63681,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [9999] = 30, + [10317] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63454,40 +63712,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1641), 1, + STATE(2040), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63517,71 +63775,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10123] = 30, + [10441] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1707), 1, + STATE(963), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63593,7 +63851,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63611,22 +63869,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10247] = 30, + [10565] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63642,40 +63900,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1900), 1, + STATE(2061), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63705,71 +63963,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10371] = 30, + [10689] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, - anon_sym_impl, - ACTIONS(668), 1, - anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, - anon_sym_dyn, - ACTIONS(846), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(850), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(856), 1, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(858), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(864), 1, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1254), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(894), 1, sym_generic_type, - STATE(1554), 1, + STATE(962), 1, sym__type, - STATE(2141), 1, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63781,7 +64039,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(852), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -63799,22 +64057,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10495] = 30, + [10813] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63830,40 +64088,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1639), 1, + STATE(1506), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63893,22 +64151,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10619] = 30, + [10937] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -63924,40 +64182,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1830), 1, + STATE(1313), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -63987,71 +64245,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10743] = 30, + [11061] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2206), 1, + ACTIONS(2189), 1, sym_identifier, - ACTIONS(2208), 1, + ACTIONS(2191), 1, anon_sym_LPAREN, - ACTIONS(2210), 1, + ACTIONS(2193), 1, anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(2197), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(2201), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(2203), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(2205), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(2207), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(2209), 1, anon_sym_AMP, - ACTIONS(2228), 1, + ACTIONS(2211), 1, anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(2217), 1, sym_metavariable, - STATE(717), 1, + STATE(712), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(894), 1, sym_generic_type, - STATE(1008), 1, + STATE(966), 1, sym__type, - STATE(1218), 1, + STATE(1220), 1, sym_for_lifetimes, - STATE(2161), 1, + STATE(2174), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2200), 1, sym_lifetime, - STATE(2234), 1, + STATE(2243), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2331), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2332), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(2215), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(977), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64063,7 +64321,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(2199), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -64081,22 +64339,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10867] = 30, + [11185] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64112,40 +64370,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1708), 1, + STATE(1946), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64175,22 +64433,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [10991] = 30, + [11309] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64206,40 +64464,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1307), 1, + STATE(1573), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64269,22 +64527,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11115] = 30, + [11433] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64300,40 +64558,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1614), 1, + STATE(1312), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64363,22 +64621,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11239] = 30, + [11557] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64394,40 +64652,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1943), 1, + STATE(1305), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64457,22 +64715,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11363] = 30, + [11681] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64484,44 +64742,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, + ACTIONS(2067), 1, + sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2282), 1, - sym_identifier, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1469), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1650), 1, + STATE(1288), 1, sym_generic_type, - STATE(1653), 1, + STATE(1533), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64551,22 +64809,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11487] = 30, + [11805] = 30, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_LPAREN, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2197), 1, + anon_sym_STAR, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2203), 1, + anon_sym_impl, + ACTIONS(2205), 1, + anon_sym_BANG, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2209), 1, + anon_sym_AMP, + ACTIONS(2211), 1, + anon_sym_dyn, + ACTIONS(2217), 1, + sym_metavariable, + STATE(712), 1, + sym_scoped_type_identifier, + STATE(894), 1, + sym_generic_type, + STATE(965), 1, + sym__type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2174), 1, + sym_scoped_identifier, + STATE(2200), 1, + sym_lifetime, + STATE(2243), 1, + sym_function_modifiers, + STATE(2331), 1, + sym_bracketed_type, + STATE(2332), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2215), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(977), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(2199), 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, + [11929] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64582,40 +64934,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1724), 1, + STATE(1303), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64645,22 +64997,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11611] = 30, + [12053] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64676,40 +65028,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1778), 1, + STATE(1571), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64739,22 +65091,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11735] = 30, + [12177] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64770,40 +65122,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2108), 1, + STATE(1806), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64833,22 +65185,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11859] = 30, + [12301] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64864,40 +65216,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1308), 1, + STATE(1907), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -64927,22 +65279,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [11983] = 30, + [12425] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -64958,40 +65310,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1308), 1, + STATE(1555), 1, sym__type, - STATE(1327), 1, - sym_lifetime, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65021,32 +65373,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12107] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1073), 20, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + [12549] = 30, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(664), 1, anon_sym_STAR, - anon_sym_POUND, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, + anon_sym_impl, + ACTIONS(686), 1, anon_sym_BANG, - anon_sym_COMMA, - anon_sym_LT, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, + ACTIONS(858), 1, anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(864), 1, sym_metavariable, - ACTIONS(1075), 41, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, + sym_scoped_type_identifier, + STATE(1288), 1, + sym_generic_type, + STATE(1797), 1, + sym__type, + STATE(2157), 1, + sym_scoped_identifier, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, + sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + STATE(1332), 11, + sym_array_type, + sym_function_type, + sym_tuple_type, + sym_unit_type, + sym_bounded_type, + sym_reference_type, + sym_pointer_type, + sym_empty_type, + sym_abstract_type, + sym_dynamic_type, + sym_macro_invocation, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65064,46 +65467,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12177] = 30, + [12673] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65119,40 +65498,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1487), 1, + STATE(1900), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65182,22 +65561,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12301] = 30, + [12797] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65213,40 +65592,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1582), 1, + STATE(1304), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65276,22 +65655,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12425] = 30, + [12921] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65307,40 +65686,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1906), 1, + STATE(1331), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65370,22 +65749,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12549] = 30, + [13045] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65401,40 +65780,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1723), 1, + STATE(1751), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65464,22 +65843,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12673] = 30, + [13169] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65495,40 +65874,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1541), 1, + STATE(1570), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65558,22 +65937,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [12797] = 30, + [13293] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65589,134 +65968,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1894), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [12921] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_STAR, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2220), 1, - anon_sym_impl, - ACTIONS(2222), 1, - anon_sym_BANG, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2226), 1, - anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, - sym_metavariable, - STATE(717), 1, - sym_scoped_type_identifier, - STATE(781), 1, - sym_generic_type, - STATE(1005), 1, + STATE(1582), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65728,7 +66013,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65746,22 +66031,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13045] = 30, + [13417] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65773,138 +66058,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2284), 1, + ACTIONS(2067), 1, sym_identifier, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1476), 1, - sym_scoped_type_identifier, - STATE(1603), 1, - sym_generic_type, - STATE(1607), 1, - sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [13169] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_STAR, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2220), 1, - anon_sym_impl, - ACTIONS(2222), 1, - anon_sym_BANG, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2226), 1, - anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, - sym_metavariable, - STATE(717), 1, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(1045), 1, + STATE(1976), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -65916,7 +66107,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -65934,22 +66125,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13293] = 30, + [13541] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -65965,40 +66156,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1633), 1, + STATE(2095), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66028,22 +66219,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13417] = 30, + [13665] = 31, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66059,40 +66250,41 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2282), 1, + sym_self, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1941), 1, + STATE(1320), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, + ACTIONS(862), 2, sym_super, sym_crate, - ACTIONS(652), 4, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66122,22 +66314,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13541] = 30, + [13791] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66153,40 +66345,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1937), 1, + STATE(1596), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66216,22 +66408,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13665] = 30, + [13915] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66247,40 +66439,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1890), 1, + STATE(1562), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66310,22 +66502,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13789] = 30, + [14039] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66341,40 +66533,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1717), 1, + STATE(1658), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66404,22 +66596,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [13913] = 30, + [14163] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66435,40 +66627,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2030), 1, + STATE(1897), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66498,22 +66690,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14037] = 30, + [14287] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66529,40 +66721,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1688), 1, + STATE(1321), 1, + sym_lifetime, + STATE(1323), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66592,22 +66784,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14161] = 30, + [14411] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66619,138 +66811,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2284), 1, + sym_identifier, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1453), 1, sym_scoped_type_identifier, - STATE(1279), 1, - sym_generic_type, - STATE(1935), 1, + STATE(1594), 1, sym__type, - STATE(2141), 1, - sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [14285] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_STAR, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2220), 1, - anon_sym_impl, - ACTIONS(2222), 1, - anon_sym_BANG, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2226), 1, - anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, - sym_metavariable, - STATE(717), 1, - sym_scoped_type_identifier, - STATE(781), 1, + STATE(1649), 1, sym_generic_type, - STATE(1048), 1, - sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66762,7 +66860,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66780,22 +66878,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14409] = 30, + [14535] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66811,40 +66909,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1309), 1, + STATE(1536), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66874,71 +66972,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14533] = 30, + [14659] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(1003), 1, + STATE(1323), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -66950,7 +67048,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -66968,22 +67066,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14657] = 30, + [14783] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -66999,40 +67097,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1938), 1, + STATE(1632), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67062,22 +67160,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14781] = 30, + [14907] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67093,40 +67191,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1777), 1, + STATE(1936), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67156,71 +67254,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [14905] = 30, + [15031] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(2218), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(2220), 1, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(2222), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(2224), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(702), 1, + anon_sym_dyn, + ACTIONS(846), 1, + anon_sym_LPAREN, + ACTIONS(850), 1, + anon_sym_LBRACK, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2226), 1, + ACTIONS(858), 1, anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, + ACTIONS(864), 1, sym_metavariable, - STATE(717), 1, + ACTIONS(2067), 1, + sym_identifier, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(781), 1, + STATE(1288), 1, sym_generic_type, - STATE(974), 1, + STATE(1886), 1, sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67232,7 +67330,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -67250,22 +67348,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15029] = 30, + [15155] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67281,40 +67379,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1973), 1, + STATE(1861), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67344,22 +67442,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15153] = 30, + [15279] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67375,40 +67473,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1756), 1, + STATE(1941), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67438,22 +67536,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15277] = 30, + [15403] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67469,40 +67567,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1623), 1, + STATE(2140), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67532,22 +67630,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15401] = 30, + [15527] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67563,40 +67661,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1713), 1, + STATE(1324), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67626,22 +67724,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15525] = 30, + [15651] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67653,44 +67751,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2286), 1, + sym_identifier, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1479), 1, sym_scoped_type_identifier, - STATE(1279), 1, - sym_generic_type, - STATE(2092), 1, + STATE(1613), 1, sym__type, - STATE(2141), 1, + STATE(1618), 1, + sym_generic_type, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67720,22 +67818,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15649] = 30, + [15775] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67751,40 +67849,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1528), 1, + STATE(1638), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67814,22 +67912,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15773] = 30, + [15899] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67845,40 +67943,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1526), 1, + STATE(1656), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -67908,22 +68006,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [15897] = 30, + [16023] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -67939,40 +68037,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1593), 1, + STATE(1521), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68002,22 +68100,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16021] = 30, + [16147] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68033,40 +68131,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1502), 1, + STATE(2031), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68096,22 +68194,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16145] = 30, + [16271] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68127,40 +68225,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1624), 1, + STATE(1971), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68190,22 +68288,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16269] = 30, + [16395] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68221,40 +68319,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1917), 1, + STATE(1978), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68284,22 +68382,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16393] = 30, + [16519] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68315,40 +68413,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1601), 1, + STATE(1992), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68378,22 +68476,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16517] = 30, + [16643] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68405,44 +68503,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, - ACTIONS(2067), 1, - sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + ACTIONS(2288), 1, + sym_identifier, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1472), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1654), 1, sym_generic_type, - STATE(1605), 1, + STATE(1655), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68472,22 +68570,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16641] = 30, + [16767] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68503,40 +68601,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1314), 1, + STATE(1540), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68566,22 +68664,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16765] = 30, + [16891] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68597,40 +68695,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1916), 1, + STATE(1639), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68660,22 +68758,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [16889] = 30, + [17015] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68691,40 +68789,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1536), 1, + STATE(1633), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68754,22 +68852,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17013] = 30, + [17139] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68785,40 +68883,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1968), 1, + STATE(1958), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68848,22 +68946,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17137] = 30, + [17263] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68879,40 +68977,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2060), 1, + STATE(1955), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -68942,22 +69040,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17261] = 30, + [17387] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -68973,40 +69071,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1926), 1, + STATE(2047), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69036,22 +69134,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17385] = 30, + [17511] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69067,134 +69165,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1610), 1, + STATE(1631), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - STATE(1329), 11, - sym_array_type, - sym_function_type, - sym_tuple_type, - sym_unit_type, - sym_bounded_type, - sym_reference_type, - sym_pointer_type, - sym_empty_type, - sym_abstract_type, - sym_dynamic_type, - sym_macro_invocation, - ACTIONS(852), 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, - [17509] = 30, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2206), 1, - sym_identifier, - ACTIONS(2208), 1, - anon_sym_LPAREN, - ACTIONS(2210), 1, - anon_sym_LBRACK, - ACTIONS(2214), 1, - anon_sym_STAR, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2220), 1, - anon_sym_impl, - ACTIONS(2222), 1, - anon_sym_BANG, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2226), 1, - anon_sym_AMP, - ACTIONS(2228), 1, - anon_sym_dyn, - ACTIONS(2234), 1, - sym_metavariable, - STATE(717), 1, - sym_scoped_type_identifier, - STATE(781), 1, - sym_generic_type, - STATE(970), 1, - sym__type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2161), 1, - sym_scoped_identifier, - STATE(2233), 1, + STATE(2204), 1, sym_lifetime, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(986), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69206,7 +69210,7 @@ static uint16_t ts_small_parse_table[] = { sym_abstract_type, sym_dynamic_type, sym_macro_invocation, - ACTIONS(2216), 17, + ACTIONS(852), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -69224,22 +69228,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17633] = 30, + [17635] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69255,40 +69259,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2051), 1, + STATE(2088), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69318,22 +69322,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [17757] = 31, + [17759] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69349,41 +69353,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2286), 1, - sym_self, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1310), 1, + STATE(1630), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(862), 2, - sym_super, - sym_crate, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(652), 4, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69416,19 +69419,19 @@ static uint16_t ts_small_parse_table[] = { [17883] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69444,40 +69447,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1975), 1, + STATE(1940), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69510,19 +69513,19 @@ static uint16_t ts_small_parse_table[] = { [18007] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69538,40 +69541,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1611), 1, + STATE(2063), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69604,19 +69607,19 @@ static uint16_t ts_small_parse_table[] = { [18131] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69632,40 +69635,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1608), 1, + STATE(1604), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69698,19 +69701,19 @@ static uint16_t ts_small_parse_table[] = { [18255] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69726,40 +69729,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(2044), 1, + STATE(1615), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69792,19 +69795,19 @@ static uint16_t ts_small_parse_table[] = { [18379] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69820,40 +69823,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1529), 1, + STATE(1553), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69886,19 +69889,19 @@ static uint16_t ts_small_parse_table[] = { [18503] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -69914,40 +69917,40 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1254), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1279), 1, + STATE(1288), 1, sym_generic_type, - STATE(1992), 1, + STATE(1927), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -69980,19 +69983,19 @@ static uint16_t ts_small_parse_table[] = { [18627] = 30, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(646), 1, + ACTIONS(664), 1, anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(676), 1, anon_sym_fn, - ACTIONS(660), 1, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(662), 1, + ACTIONS(680), 1, anon_sym_impl, - ACTIONS(668), 1, + ACTIONS(686), 1, anon_sym_BANG, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(684), 1, + ACTIONS(702), 1, anon_sym_dyn, ACTIONS(846), 1, anon_sym_LPAREN, @@ -70004,44 +70007,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(864), 1, sym_metavariable, + ACTIONS(2067), 1, + sym_identifier, ACTIONS(2071), 1, anon_sym_SQUOTE, - ACTIONS(2288), 1, - sym_identifier, - STATE(1219), 1, + STATE(1222), 1, sym_for_lifetimes, - STATE(1457), 1, + STATE(1259), 1, sym_scoped_type_identifier, - STATE(1589), 1, + STATE(1288), 1, sym_generic_type, - STATE(1630), 1, + STATE(1617), 1, sym__type, - STATE(2141), 1, + STATE(2157), 1, sym_scoped_identifier, - STATE(2230), 1, + STATE(2204), 1, + sym_lifetime, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2279), 1, - sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - STATE(1329), 11, + STATE(1332), 11, sym_array_type, sym_function_type, sym_tuple_type, @@ -70075,7 +70078,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(840), 17, + ACTIONS(2292), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -70093,7 +70096,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(838), 39, + ACTIONS(2290), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70137,7 +70140,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2292), 17, + ACTIONS(840), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -70155,7 +70158,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2290), 39, + ACTIONS(838), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70199,7 +70202,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(451), 18, + ACTIONS(465), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -70323,7 +70326,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1073), 15, + ACTIONS(1157), 15, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -70339,7 +70342,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1075), 38, + ACTIONS(1159), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -70387,10 +70390,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2310), 1, anon_sym_LT2, - STATE(806), 1, - sym_type_arguments, - STATE(891), 1, + STATE(825), 1, sym_parameters, + STATE(854), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -70446,10 +70449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2310), 1, anon_sym_LT2, - STATE(806), 1, - sym_type_arguments, - STATE(891), 1, + STATE(825), 1, sym_parameters, + STATE(854), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -70505,10 +70508,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(2310), 1, anon_sym_LT2, - STATE(806), 1, - sym_type_arguments, - STATE(891), 1, + STATE(825), 1, sym_parameters, + STATE(854), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -70557,68 +70560,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19277] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1369), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LT, + [19277] = 5, + ACTIONS(2324), 1, + anon_sym_BANG, + ACTIONS(2326), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1371), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19333] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(900), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -70640,8 +70586,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2320), 26, + ACTIONS(2320), 28, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70652,6 +70599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70667,19 +70615,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19397] = 7, + [19337] = 7, ACTIONS(2302), 1, anon_sym_LPAREN, ACTIONS(2310), 1, anon_sym_LT2, STATE(819), 1, - sym_type_arguments, - STATE(900), 1, sym_parameters, + STATE(851), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2326), 17, + ACTIONS(2330), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70697,7 +70645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2324), 26, + ACTIONS(2328), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -70724,121 +70672,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19461] = 3, + [19401] = 7, + ACTIONS(2306), 1, + anon_sym_BANG, + ACTIONS(2332), 1, + anon_sym_LBRACE, + ACTIONS(2334), 1, + anon_sym_COLON_COLON, + STATE(983), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1571), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(455), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, - anon_sym_COMMA, anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1573), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19517] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1345), 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(453), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, 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_metavariable, - ACTIONS(1347), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19573] = 5, - ACTIONS(2332), 1, - anon_sym_BANG, - ACTIONS(2334), 1, - 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, + [19465] = 7, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_LT2, + STATE(819), 1, + sym_parameters, + STATE(851), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2330), 17, + ACTIONS(2338), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70856,9 +70759,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2328), 28, + ACTIONS(2336), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -70869,7 +70771,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -70885,15 +70786,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19633] = 5, - ACTIONS(2340), 1, + [19529] = 5, + ACTIONS(2344), 1, anon_sym_BANG, - ACTIONS(2342), 1, + ACTIONS(2346), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2338), 17, + ACTIONS(2342), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70911,7 +70812,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2336), 28, + ACTIONS(2340), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -70940,19 +70841,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19693] = 7, - ACTIONS(2306), 1, + [19589] = 5, + ACTIONS(2352), 1, anon_sym_BANG, - ACTIONS(2344), 1, - anon_sym_LBRACE, - ACTIONS(2346), 1, + ACTIONS(2354), 1, anon_sym_COLON_COLON, - STATE(993), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2350), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -70963,15 +70860,18 @@ static 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(546), 28, + ACTIONS(2348), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -70980,12 +70880,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -70995,17 +70895,20 @@ static 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, - [19757] = 5, - ACTIONS(2352), 1, - anon_sym_BANG, - ACTIONS(2354), 1, - anon_sym_COLON_COLON, + [19649] = 7, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(2310), 1, + anon_sym_LT2, + STATE(819), 1, + sym_parameters, + STATE(851), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2350), 17, + ACTIONS(2358), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71023,9 +70926,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2348), 28, + ACTIONS(2356), 26, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -71036,7 +70938,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -71052,11 +70953,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19817] = 3, + [19713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1551), 9, + ACTIONS(1468), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71066,7 +70967,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1553), 38, + ACTIONS(1470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71105,15 +71006,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19873] = 5, - ACTIONS(2360), 1, + [19769] = 5, + ACTIONS(2364), 1, anon_sym_BANG, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2358), 17, + ACTIONS(2362), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71131,7 +71032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT_LT_EQ, anon_sym_DOT, - ACTIONS(2356), 28, + ACTIONS(2360), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71160,68 +71061,170 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [19933] = 7, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(819), 1, - sym_type_arguments, - STATE(900), 1, - sym_parameters, + [19829] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 17, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1612), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, anon_sym_EQ, + anon_sym_COMMA, anon_sym_LT, - anon_sym_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(2364), 26, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1614), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19885] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1772), 9, anon_sym_SEMI, - 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_POUND, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1774), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19941] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1846), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1848), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, [19997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1539), 9, + ACTIONS(1105), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71231,7 +71234,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1541), 38, + ACTIONS(1107), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71270,17 +71273,16 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20053] = 5, - ACTIONS(2372), 1, - anon_sym_SQUOTE, - STATE(975), 1, - sym_loop_label, + [20053] = 4, + ACTIONS(2368), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2370), 15, + ACTIONS(2364), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71294,11 +71296,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2368), 29, + ACTIONS(2366), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71306,6 +71307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71324,16 +71326,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20112] = 4, - ACTIONS(2374), 1, - anon_sym_LBRACE, + [20110] = 5, + ACTIONS(2370), 1, + anon_sym_else, + STATE(988), 1, + sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 16, + ACTIONS(379), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71347,10 +71350,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2354), 29, + ACTIONS(377), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71358,7 +71362,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71377,11 +71380,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20169] = 3, + [20169] = 4, + ACTIONS(2372), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 16, + ACTIONS(2324), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71398,11 +71403,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2354), 30, + ACTIONS(2326), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71429,13 +71433,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20224] = 4, - ACTIONS(2376), 1, + [20226] = 4, + ACTIONS(2374), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 16, + ACTIONS(2352), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71452,7 +71456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2342), 29, + ACTIONS(2354), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71482,13 +71486,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20281] = 4, - ACTIONS(2378), 1, - anon_sym_LBRACE, + [20283] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 16, + ACTIONS(2324), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -71505,10 +71507,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2362), 29, + ACTIONS(2326), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71535,16 +71538,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20338] = 4, + [20338] = 5, ACTIONS(2380), 1, - anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1028), 1, + sym_loop_label, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2332), 16, + ACTIONS(2378), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71558,10 +71562,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2334), 29, + ACTIONS(2376), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71569,7 +71574,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71588,17 +71592,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20395] = 5, + [20397] = 4, ACTIONS(2382), 1, - anon_sym_else, - STATE(999), 1, - sym_else_clause, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(371), 15, + ACTIONS(2344), 16, anon_sym_PLUS, anon_sym_STAR, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71612,11 +71615,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(369), 29, + ACTIONS(2346), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -71624,6 +71626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71643,14 +71646,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, [20454] = 5, - ACTIONS(2382), 1, + ACTIONS(2370), 1, anon_sym_else, - STATE(983), 1, + STATE(987), 1, sym_else_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(379), 15, + ACTIONS(373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -71666,7 +71669,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(377), 29, + ACTIONS(371), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -71700,58 +71703,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1615), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1617), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20567] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1189), 7, + ACTIONS(1157), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71759,7 +71711,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1191), 38, + ACTIONS(1159), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -71798,72 +71750,15 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20621] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1738), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, + [20567] = 4, + ACTIONS(2384), 1, anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1740), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20675] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(2386), 16, + ACTIONS(2358), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -71877,12 +71772,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 23, + ACTIONS(2356), 29, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -71901,62 +71802,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20731] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1730), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1732), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20785] = 3, + [20623] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1726), 7, + ACTIONS(1412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -71964,7 +71814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(1414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72003,11 +71853,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20839] = 3, + [20677] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1722), 7, + ACTIONS(1161), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72015,7 +71865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1724), 38, + ACTIONS(1163), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72054,13 +71904,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20893] = 4, + [20731] = 4, ACTIONS(2390), 1, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2388), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -72076,7 +71926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 29, + ACTIONS(2386), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -72106,11 +71956,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20949] = 3, + [20787] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1718), 7, + ACTIONS(1552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72118,7 +71968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1720), 38, + ACTIONS(1554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72157,113 +72007,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21003] = 3, + [20841] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1714), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1716), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(2396), 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, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21057] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1702), 7, + ACTIONS(2394), 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(2392), 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_metavariable, - ACTIONS(1704), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21111] = 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, + [20897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1694), 7, + ACTIONS(1544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72271,7 +72071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1696), 38, + ACTIONS(1546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72310,117 +72110,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21165] = 7, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2398), 14, - 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, - ACTIONS(2392), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [21227] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(812), 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(814), 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_COLON, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [21281] = 3, + [20951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1690), 7, + ACTIONS(1540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72428,7 +72122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(1542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72467,11 +72161,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21335] = 3, + [21005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1686), 7, + ACTIONS(1536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72479,7 +72173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(1538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72518,64 +72212,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21389] = 5, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2402), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(548), 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(546), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [21447] = 3, + [21059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1643), 7, + ACTIONS(1600), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72583,7 +72224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1645), 38, + ACTIONS(1602), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72622,11 +72263,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21501] = 3, + [21113] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1631), 7, + ACTIONS(1516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72634,7 +72275,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1633), 38, + ACTIONS(1518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72673,11 +72314,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21555] = 3, + [21167] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1623), 7, + ACTIONS(1384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72685,7 +72326,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1625), 38, + ACTIONS(1386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72724,11 +72365,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21609] = 3, + [21221] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1619), 7, + ACTIONS(2322), 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(2320), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [21275] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72736,7 +72428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1621), 38, + ACTIONS(1358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72775,11 +72467,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21663] = 3, + [21329] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1611), 7, + ACTIONS(1364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72787,7 +72479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1613), 38, + ACTIONS(1366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72826,11 +72518,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21717] = 3, + [21383] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1607), 7, + ACTIONS(1372), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72838,7 +72530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1609), 38, + ACTIONS(1374), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72877,11 +72569,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21771] = 3, + [21437] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1599), 7, + ACTIONS(1266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72889,7 +72581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1601), 38, + ACTIONS(1268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72928,11 +72620,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21825] = 3, + [21491] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1591), 7, + ACTIONS(2400), 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(2398), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + 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, + [21545] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72940,7 +72683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1593), 38, + ACTIONS(1694), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -72979,11 +72722,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21879] = 3, + [21599] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1583), 7, + ACTIONS(1704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -72991,7 +72734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1585), 38, + ACTIONS(1706), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73030,11 +72773,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21933] = 3, + [21653] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1579), 7, + ACTIONS(1616), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73042,7 +72785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1581), 38, + ACTIONS(1618), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73081,11 +72824,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21987] = 3, + [21707] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1575), 7, + ACTIONS(393), 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(391), 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_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, + anon_sym_else, + [21761] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73093,7 +72887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1577), 38, + ACTIONS(1322), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73132,11 +72926,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22041] = 3, + [21815] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1567), 7, + ACTIONS(1720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73144,7 +72938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1569), 38, + ACTIONS(1722), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73183,11 +72977,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22095] = 3, + [21869] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1559), 7, + ACTIONS(1492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73195,7 +72989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1561), 38, + ACTIONS(1494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73234,66 +73028,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22149] = 7, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - STATE(998), 1, - sym_arguments, + [21923] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2406), 14, - 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, - ACTIONS(2404), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22211] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1101), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73301,7 +73040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1103), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73340,11 +73079,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22265] = 3, + [21977] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1555), 7, + ACTIONS(1368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73352,7 +73091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1557), 38, + ACTIONS(1370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73391,11 +73130,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22319] = 3, + [22031] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1547), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73403,7 +73142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1549), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73442,11 +73181,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22373] = 3, + [22085] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73454,7 +73193,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(393), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73493,11 +73232,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22427] = 3, + [22139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 7, + ACTIONS(1376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73505,7 +73244,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(397), 38, + ACTIONS(1378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73544,11 +73283,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22481] = 3, + [22193] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 7, + ACTIONS(1069), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73556,7 +73295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(389), 38, + ACTIONS(1071), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73595,11 +73334,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22535] = 3, + [22247] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1475), 7, + ACTIONS(1153), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73607,7 +73346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1477), 38, + ACTIONS(1155), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73646,11 +73385,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22589] = 3, + [22301] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2404), 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(2402), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + 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, + [22355] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1463), 7, + ACTIONS(1206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73658,7 +73448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1465), 38, + ACTIONS(1208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73697,11 +73487,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22643] = 3, + [22409] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(560), 7, + ACTIONS(1210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73709,7 +73499,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(562), 38, + ACTIONS(1212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73748,11 +73538,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22697] = 3, + [22463] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1447), 7, + ACTIONS(1488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73760,7 +73550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1449), 38, + ACTIONS(1490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73799,12 +73589,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22751] = 4, - ACTIONS(2412), 1, - anon_sym_DASH_GT, + [22517] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2408), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, @@ -73821,11 +73612,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2408), 29, + ACTIONS(2406), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -73851,11 +73641,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22807] = 3, + [22573] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1439), 7, + ACTIONS(1484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73863,7 +73653,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1441), 38, + ACTIONS(1486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73902,11 +73692,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22861] = 3, + [22627] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1862), 7, + ACTIONS(1480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73914,7 +73704,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -73953,11 +73743,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22915] = 3, + [22681] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 7, + ACTIONS(1448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -73965,7 +73755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(423), 38, + ACTIONS(1450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74004,11 +73794,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22969] = 3, + [22735] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1766), 7, + ACTIONS(1444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74016,7 +73806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(1446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74055,11 +73845,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23023] = 3, + [22789] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1431), 7, + ACTIONS(1432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74067,7 +73857,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1433), 38, + ACTIONS(1434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74106,66 +73896,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23077] = 7, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2416), 14, - 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, - ACTIONS(2414), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23139] = 3, + [22843] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1073), 7, + ACTIONS(1428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74173,7 +73908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1075), 38, + ACTIONS(1430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74212,11 +73947,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23193] = 3, + [22897] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(399), 7, + ACTIONS(1246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74224,7 +73959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(401), 38, + ACTIONS(1248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74263,220 +73998,115 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23247] = 3, + [22951] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(389), 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(387), 30, + ACTIONS(1420), 7, 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_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, - anon_sym_else, - [23301] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2420), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2422), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, 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(2418), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [23357] = 4, - ACTIONS(2424), 1, anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1422), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23005] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 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(2364), 29, + ACTIONS(1294), 7, 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_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, - [23413] = 4, - ACTIONS(2426), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2366), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_POUND, 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(2364), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23469] = 4, - ACTIONS(2428), 1, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1296), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [23059] = 4, + ACTIONS(2412), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -74492,7 +74122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2364), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -74522,11 +74152,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23525] = 3, + [23115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1810), 7, + ACTIONS(1282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74534,7 +74164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74573,11 +74203,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23579] = 3, + [23169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1822), 7, + ACTIONS(1596), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74585,7 +74215,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(1598), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74624,66 +74254,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23633] = 7, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2432), 14, - 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, - ACTIONS(2430), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23695] = 3, + [23223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1511), 7, + ACTIONS(1250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74691,7 +74266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1513), 38, + ACTIONS(1252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74730,11 +74305,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23749] = 3, + [23277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1487), 7, + ACTIONS(1242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74742,7 +74317,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1489), 38, + ACTIONS(1244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74781,113 +74356,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23803] = 3, + [23331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2436), 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(2434), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - 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, - [23857] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2440), 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(2438), 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_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, - [23911] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1866), 7, + ACTIONS(1604), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74895,7 +74368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1606), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74934,11 +74407,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23965] = 3, + [23385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1870), 7, + ACTIONS(1238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74946,7 +74419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1872), 38, + ACTIONS(1240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -74985,11 +74458,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24019] = 3, + [23439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1543), 7, + ACTIONS(1234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -74997,7 +74470,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1545), 38, + ACTIONS(1236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75036,11 +74509,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24073] = 3, + [23493] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2444), 15, + ACTIONS(2416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -75056,7 +74529,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2442), 30, + ACTIONS(2414), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -75087,11 +74560,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24127] = 3, + [23547] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1395), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75099,7 +74572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1397), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75138,11 +74611,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24181] = 3, + [23601] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1389), 7, + ACTIONS(1592), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75150,7 +74623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1391), 38, + ACTIONS(1594), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75189,11 +74662,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24235] = 3, + [23655] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1385), 7, + ACTIONS(1230), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75201,7 +74674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1387), 38, + ACTIONS(1232), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75240,11 +74713,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24289] = 3, + [23709] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1381), 7, + ACTIONS(1226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75252,7 +74725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1383), 38, + ACTIONS(1228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75291,165 +74764,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24343] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2448), 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(2446), 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_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, - [24397] = 3, + [23763] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2452), 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(2450), 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_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, - [24451] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2454), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - ACTIONS(2422), 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(2418), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [24507] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1563), 7, + ACTIONS(1222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75457,7 +74776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1565), 38, + ACTIONS(1224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75496,11 +74815,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24561] = 3, + [23817] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1459), 7, + ACTIONS(1290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75508,7 +74827,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1461), 38, + ACTIONS(1292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75547,11 +74866,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24615] = 3, + [23871] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1750), 7, + ACTIONS(1218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75559,7 +74878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(1220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75598,62 +74917,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24669] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(397), 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(395), 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_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, - anon_sym_else, - [24723] = 3, + [23925] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1373), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75661,7 +74929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1375), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75700,11 +74968,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24777] = 3, + [23979] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1137), 7, + ACTIONS(1214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75712,7 +74980,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1139), 38, + ACTIONS(1216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75751,62 +75019,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24831] = 3, + [24033] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2458), 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(2456), 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_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, - [24885] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1746), 7, + ACTIONS(1588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75814,7 +75031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(1590), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75853,11 +75070,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24939] = 3, + [24087] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1742), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75865,7 +75082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75904,11 +75121,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24993] = 3, + [24141] = 4, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2420), 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(2418), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24197] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1361), 7, + ACTIONS(1202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75916,7 +75185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1363), 38, + ACTIONS(1204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -75955,11 +75224,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25047] = 3, + [24251] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1403), 7, + ACTIONS(1584), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -75967,7 +75236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1405), 38, + ACTIONS(1586), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76006,11 +75275,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25101] = 3, + [24305] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1651), 7, + ACTIONS(812), 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(814), 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_COLON, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_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, + [24359] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76018,7 +75338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1653), 38, + ACTIONS(1578), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76057,62 +75377,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25155] = 3, + [24413] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2462), 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(2460), 30, + ACTIONS(1572), 7, 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_DASH_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25209] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1574), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24467] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1647), 7, + ACTIONS(1316), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76120,7 +75440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1649), 38, + ACTIONS(1318), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76159,11 +75479,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25263] = 3, + [24521] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1349), 7, + ACTIONS(1324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76171,7 +75491,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1351), 38, + ACTIONS(1326), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76210,11 +75530,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25317] = 3, + [24575] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1337), 7, + ACTIONS(1198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76222,7 +75542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1339), 38, + ACTIONS(1200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76261,11 +75581,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25371] = 3, + [24629] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1329), 7, + ACTIONS(1194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76273,7 +75593,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1331), 38, + ACTIONS(1196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76312,11 +75632,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25425] = 3, + [24683] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1213), 7, + ACTIONS(1145), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76324,7 +75644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1215), 38, + ACTIONS(1147), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76363,11 +75683,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25479] = 3, + [24737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1627), 7, + ACTIONS(1141), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76375,7 +75695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1629), 38, + ACTIONS(1143), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76414,62 +75734,113 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25533] = 3, + [24791] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2466), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1328), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_POUND, 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(2464), 30, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1330), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24845] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1133), 7, 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_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, - [25587] = 3, + sym_metavariable, + ACTIONS(1135), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24899] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1333), 7, + ACTIONS(1640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76477,7 +75848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1335), 38, + ACTIONS(1642), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76516,11 +75887,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25641] = 3, + [24953] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1325), 7, + ACTIONS(1564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76528,7 +75899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1327), 38, + ACTIONS(1566), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76567,11 +75938,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25695] = 3, + [25007] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1317), 7, + ACTIONS(1548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76579,7 +75950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1319), 38, + ACTIONS(1550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76618,11 +75989,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25749] = 3, + [25061] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1145), 7, + ACTIONS(1532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76630,7 +76001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1147), 38, + ACTIONS(1534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76669,11 +76040,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25803] = 3, + [25115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1587), 7, + ACTIONS(1512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76681,7 +76052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1589), 38, + ACTIONS(1514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76720,11 +76091,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25857] = 3, + [25169] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1309), 7, + ACTIONS(1500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76732,7 +76103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1311), 38, + ACTIONS(1502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76771,11 +76142,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25911] = 3, + [25223] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1321), 7, + ACTIONS(1476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76783,7 +76154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1323), 38, + ACTIONS(1478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76822,11 +76193,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25965] = 3, + [25277] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1121), 7, + ACTIONS(1472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76834,7 +76205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1123), 38, + ACTIONS(1474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76873,11 +76244,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26019] = 3, + [25331] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1289), 7, + ACTIONS(1129), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76885,7 +76256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1291), 38, + ACTIONS(1131), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76924,11 +76295,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26073] = 3, + [25385] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1141), 7, + ACTIONS(1560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76936,7 +76307,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1143), 38, + ACTIONS(1562), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -76975,11 +76346,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26127] = 3, + [25439] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1273), 7, + ACTIONS(1452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -76987,7 +76358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1275), 38, + ACTIONS(1454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77026,11 +76397,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26181] = 3, + [25493] = 4, + ACTIONS(2426), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2424), 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(2422), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25549] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1089), 7, + ACTIONS(1121), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77038,7 +76461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1091), 38, + ACTIONS(1123), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77077,11 +76500,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26235] = 3, + [25603] = 4, + ACTIONS(2432), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2430), 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(2428), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25659] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1265), 7, + ACTIONS(1338), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77089,7 +76564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1267), 38, + ACTIONS(1340), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77128,11 +76603,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26289] = 3, + [25713] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1105), 7, + ACTIONS(1416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77140,7 +76615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1107), 38, + ACTIONS(1418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77179,11 +76654,168 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26343] = 3, + [25767] = 5, + ACTIONS(2306), 1, + anon_sym_BANG, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1109), 7, + ACTIONS(455), 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(453), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [25825] = 4, + ACTIONS(2440), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2438), 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(2436), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25881] = 4, + ACTIONS(2446), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2444), 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(2442), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25937] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1608), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77191,7 +76823,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1111), 38, + ACTIONS(1610), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77230,11 +76862,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26397] = 3, + [25991] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1125), 7, + ACTIONS(1109), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77242,7 +76874,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1127), 38, + ACTIONS(1111), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77281,11 +76913,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26451] = 3, + [26045] = 4, + ACTIONS(2448), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1133), 7, + ACTIONS(2330), 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(2328), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26101] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1620), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77293,7 +76977,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1135), 38, + ACTIONS(1622), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77332,11 +77016,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26505] = 3, + [26155] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1277), 7, + ACTIONS(1097), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77344,7 +77028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1279), 38, + ACTIONS(1099), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77383,11 +77067,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26559] = 3, + [26209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1257), 7, + ACTIONS(1348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77395,7 +77079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1259), 38, + ACTIONS(1350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77434,11 +77118,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26613] = 3, + [26263] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1241), 7, + ACTIONS(566), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77446,7 +77130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1243), 38, + ACTIONS(568), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77485,11 +77169,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26667] = 3, + [26317] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1499), 7, + ACTIONS(1093), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77497,7 +77181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1501), 38, + ACTIONS(1095), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77536,11 +77220,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26721] = 3, + [26371] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1233), 7, + ACTIONS(1073), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77548,7 +77232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1235), 38, + ACTIONS(1075), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77587,11 +77271,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26775] = 3, + [26425] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1221), 7, + ACTIONS(1308), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77599,7 +77283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1223), 38, + ACTIONS(1310), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77638,11 +77322,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26829] = 3, + [26479] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1217), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77650,7 +77334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1219), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77689,11 +77373,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26883] = 3, + [26533] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1205), 7, + ACTIONS(1380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77701,7 +77385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1207), 38, + ACTIONS(1382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77740,11 +77424,114 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26937] = 3, + [26587] = 4, + ACTIONS(2448), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1157), 7, + ACTIONS(2338), 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(2336), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26643] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2452), 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(2450), 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_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, + [26697] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1077), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77752,7 +77539,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1159), 38, + ACTIONS(1079), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77791,11 +77578,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26991] = 3, + [26751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1161), 7, + ACTIONS(1081), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77803,7 +77590,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1163), 38, + ACTIONS(1083), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77842,11 +77629,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27045] = 3, + [26805] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1854), 7, + ACTIONS(1085), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77854,7 +77641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(1087), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77893,11 +77680,166 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27099] = 3, + [26859] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1165), 7, + ACTIONS(2456), 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(2454), 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_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, + [26913] = 4, + ACTIONS(2462), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2460), 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(2458), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [26969] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2464), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + ACTIONS(2410), 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(2406), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [27025] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1101), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77905,7 +77847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1167), 38, + ACTIONS(1103), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77944,11 +77886,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27153] = 3, + [27079] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1169), 7, + ACTIONS(1388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -77956,7 +77898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1171), 38, + ACTIONS(1390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -77995,63 +77937,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27207] = 4, - ACTIONS(2472), 1, - anon_sym_DASH_GT, + [27133] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2470), 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(2468), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27263] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1197), 7, + ACTIONS(1392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78059,7 +77949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1199), 38, + ACTIONS(1394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78098,11 +77988,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27317] = 3, + [27187] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1173), 7, + ACTIONS(1624), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78110,7 +78000,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1175), 38, + ACTIONS(1626), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78149,11 +78039,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27371] = 3, + [27241] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2468), 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(2466), 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_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, + [27295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1261), 7, + ACTIONS(1149), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78161,7 +78102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1263), 38, + ACTIONS(1151), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78200,11 +78141,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27425] = 3, + [27349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1269), 7, + ACTIONS(578), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78212,7 +78153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1271), 38, + ACTIONS(580), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78251,11 +78192,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27479] = 3, + [27403] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1281), 7, + ACTIONS(2472), 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(2470), 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_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, + [27457] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78263,7 +78255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1283), 38, + ACTIONS(1398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78302,11 +78294,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27533] = 3, + [27511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1293), 7, + ACTIONS(1400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78314,7 +78306,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1295), 38, + ACTIONS(1402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78353,11 +78345,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27587] = 3, + [27565] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1117), 7, + ACTIONS(1404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78365,7 +78357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1119), 38, + ACTIONS(1406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78404,11 +78396,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27641] = 3, + [27619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1297), 7, + ACTIONS(1125), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78416,7 +78408,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1299), 38, + ACTIONS(1127), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78455,11 +78447,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27695] = 3, + [27673] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1305), 7, + ACTIONS(1408), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78467,7 +78459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1307), 38, + ACTIONS(1410), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78506,11 +78498,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27749] = 3, + [27727] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1249), 7, + ACTIONS(407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78518,7 +78510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1251), 38, + ACTIONS(409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78557,11 +78549,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27803] = 3, + [27781] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1097), 7, + ACTIONS(1424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78569,7 +78561,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1099), 38, + ACTIONS(1426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78608,11 +78600,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27857] = 3, + [27835] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1245), 7, + ACTIONS(1436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78620,7 +78612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1247), 38, + ACTIONS(1438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78659,11 +78651,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27911] = 3, + [27889] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1313), 7, + ACTIONS(1464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78671,7 +78663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1315), 38, + ACTIONS(1466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -78710,13 +78702,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27965] = 4, - ACTIONS(2428), 1, - anon_sym_COLON_COLON, + [27943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2322), 15, + ACTIONS(389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -78732,7 +78722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2320), 29, + ACTIONS(387), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -78762,215 +78752,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28021] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1237), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1239), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28075] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1193), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1195), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28129] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1093), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1095), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28183] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1754), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(1756), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28237] = 3, + anon_sym_else, + [27997] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1085), 7, + ACTIONS(395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -78978,7 +78765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1087), 38, + ACTIONS(397), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79017,11 +78804,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28291] = 3, + [28051] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1415), 7, + ACTIONS(387), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79029,7 +78816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1417), 38, + ACTIONS(389), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79068,11 +78855,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28345] = 3, + [28105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1081), 7, + ACTIONS(1274), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79080,7 +78867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1083), 38, + ACTIONS(1276), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79119,11 +78906,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28399] = 3, + [28159] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1181), 7, + ACTIONS(391), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79131,7 +78918,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1183), 38, + ACTIONS(393), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79170,63 +78957,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28453] = 4, - ACTIONS(2478), 1, - anon_sym_DASH_GT, + [28213] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2476), 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(2474), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28509] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1177), 7, + ACTIONS(1504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79234,7 +78969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1179), 38, + ACTIONS(1506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79273,63 +79008,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28563] = 4, - ACTIONS(2484), 1, - anon_sym_DASH_GT, + [28267] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2482), 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(2480), 29, + ACTIONS(1744), 7, 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_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, - [28619] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1746), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28321] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1423), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79337,7 +79071,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1425), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79376,11 +79110,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28673] = 3, + [28375] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1153), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79388,7 +79122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1155), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79427,11 +79161,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28727] = 3, + [28429] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1129), 7, + ACTIONS(1300), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79439,7 +79173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1131), 38, + ACTIONS(1302), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79478,11 +79212,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28781] = 3, + [28483] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1077), 7, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79490,7 +79224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1079), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79529,11 +79263,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28835] = 3, + [28537] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1149), 7, + ACTIONS(1568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79541,7 +79275,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1151), 38, + ACTIONS(1570), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79580,13 +79314,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28889] = 4, - ACTIONS(2428), 1, - anon_sym_COLON_COLON, + [28591] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2326), 15, + ACTIONS(2476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -79602,7 +79334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2324), 29, + ACTIONS(2474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -79614,6 +79346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -79632,11 +79365,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28945] = 3, + [28645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1427), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79644,7 +79377,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1429), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79683,63 +79416,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28999] = 4, - ACTIONS(2490), 1, - anon_sym_DASH_GT, + [28699] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2488), 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(2486), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29055] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1069), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79747,7 +79428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1071), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79786,11 +79467,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29109] = 3, + [28753] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1515), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79798,7 +79479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1517), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79837,11 +79518,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29163] = 3, + [28807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1225), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79849,7 +79530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1227), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79888,11 +79569,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29217] = 3, + [28861] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1185), 7, + ACTIONS(1304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79900,7 +79581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1187), 38, + ACTIONS(1306), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79939,11 +79620,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29271] = 3, + [28915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1595), 7, + ACTIONS(1344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -79951,7 +79632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1597), 38, + ACTIONS(1346), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -79990,11 +79671,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29325] = 3, + [28969] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2480), 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(2478), 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_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, + [29023] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1758), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80002,7 +79734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1760), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80041,11 +79773,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29379] = 3, + [29077] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1786), 7, + ACTIONS(1644), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80053,7 +79785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1788), 38, + ACTIONS(1646), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80092,63 +79824,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29433] = 4, - ACTIONS(2496), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2494), 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(2492), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29489] = 3, + [29131] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1806), 7, + ACTIONS(1648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80156,7 +79836,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(1650), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80195,11 +79875,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29543] = 3, + [29185] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1399), 7, + ACTIONS(1724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80207,7 +79887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1401), 38, + ACTIONS(1726), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80246,11 +79926,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29597] = 3, + [29239] = 4, + ACTIONS(2486), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2500), 15, + ACTIONS(2484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80266,7 +79948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2498), 30, + ACTIONS(2482), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80278,7 +79960,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -80297,11 +79978,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29651] = 3, + [29295] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1201), 7, + ACTIONS(1113), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80309,7 +79990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1203), 38, + ACTIONS(1115), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80348,62 +80029,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29705] = 3, + [29349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2350), 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(2348), 28, + ACTIONS(1834), 7, 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_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [29759] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1836), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29403] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1253), 7, + ACTIONS(1117), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80411,7 +80092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1255), 38, + ACTIONS(1119), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80450,11 +80131,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29813] = 3, + [29457] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1814), 7, + ACTIONS(1728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80462,7 +80143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(1730), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80501,11 +80182,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29867] = 3, + [29511] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1301), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80513,7 +80194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1303), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80552,13 +80233,13 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29921] = 4, - ACTIONS(2506), 1, - anon_sym_DASH_GT, + [29565] = 4, + ACTIONS(2448), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2504), 15, + ACTIONS(2358), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -80574,7 +80255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2502), 29, + ACTIONS(2356), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -80604,11 +80285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29977] = 3, + [29621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1848), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80616,7 +80297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1850), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80655,11 +80336,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30031] = 3, + [29675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1353), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80667,7 +80348,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1355), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80706,11 +80387,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30085] = 3, + [29729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1435), 7, + ACTIONS(2490), 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(2488), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + 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, + [29783] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80718,7 +80450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1437), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80757,11 +80489,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30139] = 3, + [29837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1698), 7, + ACTIONS(1636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80769,7 +80501,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(1638), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80808,11 +80540,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30193] = 3, + [29891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1706), 7, + ACTIONS(1496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80820,7 +80552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(1498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80859,11 +80591,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30247] = 3, + [29945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1834), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80871,7 +80603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1836), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80910,11 +80642,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30301] = 3, + [29999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1365), 7, + ACTIONS(1764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80922,7 +80654,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1367), 38, + ACTIONS(1766), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -80961,11 +80693,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30355] = 3, + [30053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1603), 7, + ACTIONS(1760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -80973,7 +80705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1605), 38, + ACTIONS(1762), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81012,11 +80744,63 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30409] = 3, + [30107] = 4, + ACTIONS(2492), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2358), 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(2356), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30163] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1635), 7, + ACTIONS(1360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81024,7 +80808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1637), 38, + ACTIONS(1362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81063,11 +80847,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30463] = 3, + [30217] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1710), 7, + ACTIONS(1756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81075,7 +80859,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(1758), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81114,11 +80898,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30517] = 3, + [30271] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1734), 7, + ACTIONS(1752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81126,7 +80910,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1754), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81165,11 +80949,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30571] = 3, + [30325] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1762), 7, + ACTIONS(1556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81177,7 +80961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(1558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81216,62 +81000,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30625] = 3, + [30379] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2510), 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(2508), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_DASH_GT, - 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, - [30679] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(1830), 7, + ACTIONS(1508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81279,7 +81012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(1510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81318,11 +81051,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30733] = 3, + [30433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1639), 7, + ACTIONS(1528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81330,7 +81063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1641), 38, + ACTIONS(1530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81369,11 +81102,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30787] = 3, + [30487] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2514), 15, + ACTIONS(397), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -81389,7 +81122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2512), 30, + ACTIONS(395), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -81401,7 +81134,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -81420,11 +81152,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30841] = 3, + anon_sym_else, + [30541] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1341), 7, + ACTIONS(1740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81432,7 +81165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1343), 38, + ACTIONS(1742), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81471,11 +81204,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30895] = 3, + [30595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1531), 7, + ACTIONS(1045), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81483,7 +81216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1533), 38, + ACTIONS(1047), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81522,11 +81255,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [30949] = 3, + [30649] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1113), 7, + ACTIONS(1748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81534,7 +81267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1115), 38, + ACTIONS(1750), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81573,11 +81306,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31003] = 3, + [30703] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1443), 7, + ACTIONS(1732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81585,7 +81318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1445), 38, + ACTIONS(1734), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81624,11 +81357,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31057] = 3, + [30757] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1774), 7, + ACTIONS(1716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81636,7 +81369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1776), 38, + ACTIONS(1718), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81675,11 +81408,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31111] = 3, + [30811] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1471), 7, + ACTIONS(1768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81687,7 +81420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1473), 38, + ACTIONS(1770), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81726,11 +81459,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31165] = 3, + [30865] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1858), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81738,7 +81471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81777,11 +81510,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31219] = 3, + [30919] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1778), 7, + ACTIONS(1712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81789,7 +81522,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1714), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81828,11 +81561,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31273] = 3, + [30973] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1826), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81840,7 +81573,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1828), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81879,62 +81612,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31327] = 3, + [31027] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(393), 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(391), 30, + ACTIONS(1708), 7, 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_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, - anon_sym_else, - [31381] = 3, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(1710), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31081] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1451), 7, + ACTIONS(1580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81942,7 +81675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1453), 38, + ACTIONS(1582), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -81981,11 +81714,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31435] = 3, + [31135] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1838), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -81993,7 +81726,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82032,11 +81765,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31489] = 3, + [31189] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1455), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82044,7 +81777,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1457), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82083,62 +81816,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31543] = 3, + [31243] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2518), 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(2516), 30, + ACTIONS(1652), 7, 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_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, - [31597] = 3, + sym_metavariable, + ACTIONS(1654), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31297] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1479), 7, + ACTIONS(1660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82146,7 +81879,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1481), 38, + ACTIONS(1662), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82185,11 +81918,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31651] = 3, + [31351] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1491), 7, + ACTIONS(1700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82197,7 +81930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1493), 38, + ACTIONS(1702), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82236,11 +81969,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31705] = 3, + [31405] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1507), 7, + ACTIONS(1520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82248,7 +81981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1509), 38, + ACTIONS(1522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82287,11 +82020,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31759] = 3, + [31459] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1523), 7, + ACTIONS(1664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82299,7 +82032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1525), 38, + ACTIONS(1666), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82338,11 +82071,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31813] = 3, + [31513] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1285), 7, + ACTIONS(1672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82350,7 +82083,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1287), 38, + ACTIONS(1674), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82389,11 +82122,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31867] = 3, + [31567] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1818), 7, + ACTIONS(1312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82401,7 +82134,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1314), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82440,11 +82173,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31921] = 3, + [31621] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1798), 7, + ACTIONS(1286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82452,7 +82185,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1800), 38, + ACTIONS(1288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82491,11 +82224,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31975] = 3, + [31675] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1535), 7, + ACTIONS(1696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82503,7 +82236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1537), 38, + ACTIONS(1698), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82542,11 +82275,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32029] = 3, + [31729] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1357), 7, + ACTIONS(1137), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82554,7 +82287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1359), 38, + ACTIONS(1139), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82593,11 +82326,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32083] = 3, + [31783] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1802), 7, + ACTIONS(1688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82605,7 +82338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1690), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82644,11 +82377,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32137] = 3, + [31837] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1874), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82656,7 +82389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1876), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82695,11 +82428,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32191] = 3, + [31891] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1790), 7, + ACTIONS(1676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82707,7 +82440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1792), 38, + ACTIONS(1678), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82746,11 +82479,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32245] = 3, + [31945] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1377), 7, + ACTIONS(1352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82758,7 +82491,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1379), 38, + ACTIONS(1354), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82797,11 +82530,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32299] = 3, + [31999] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1782), 7, + ACTIONS(1278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82809,7 +82542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(1280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82848,11 +82581,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32353] = 3, + [32053] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1770), 7, + ACTIONS(1254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82860,7 +82593,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(1256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82899,11 +82632,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32407] = 3, + [32107] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1882), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82911,7 +82644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1884), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -82950,11 +82683,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32461] = 3, + [32161] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1527), 7, + ACTIONS(1680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -82962,7 +82695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1529), 38, + ACTIONS(1682), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83001,11 +82734,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32515] = 3, + [32215] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1878), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83013,7 +82746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1880), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83052,11 +82785,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32569] = 3, + [32269] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1407), 7, + ACTIONS(1736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83064,7 +82797,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1409), 38, + ACTIONS(1738), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83103,11 +82836,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32623] = 3, + [32323] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1519), 7, + ACTIONS(1668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83115,7 +82848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1521), 38, + ACTIONS(1670), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83154,11 +82887,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32677] = 3, + [32377] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1411), 7, + ACTIONS(1656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83166,7 +82899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1413), 38, + ACTIONS(1658), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83205,11 +82938,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32731] = 3, + [32431] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1503), 7, + ACTIONS(2496), 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(2494), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DASH_GT, + 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, + [32485] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(1524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83217,7 +83001,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1505), 38, + ACTIONS(1526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83256,11 +83040,62 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32785] = 3, + [32539] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2500), 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(2498), 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_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, + [32593] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1419), 7, + ACTIONS(1684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83268,7 +83103,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1421), 38, + ACTIONS(1686), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83307,11 +83142,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32839] = 3, + [32647] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1483), 7, + ACTIONS(1460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83319,7 +83154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1485), 38, + ACTIONS(1462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83358,11 +83193,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32893] = 3, + [32701] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1065), 7, + ACTIONS(1456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83370,7 +83205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1067), 38, + ACTIONS(1458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83409,11 +83244,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32947] = 3, + [32755] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1467), 7, + ACTIONS(1440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -83421,7 +83256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(1469), 38, + ACTIONS(1442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -83460,11 +83295,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33001] = 3, + [32809] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2522), 15, + ACTIONS(2504), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83480,7 +83315,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2520), 29, + ACTIONS(2502), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83510,11 +83345,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33054] = 3, + [32862] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2526), 15, + ACTIONS(2394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83530,7 +83365,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2524), 29, + ACTIONS(2392), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83560,11 +83395,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33107] = 3, + [32915] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2119), 15, + ACTIONS(2111), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83580,7 +83415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2121), 29, + ACTIONS(2113), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83610,11 +83445,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33160] = 3, + [32968] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(582), 15, + ACTIONS(441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83630,7 +83465,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(580), 29, + ACTIONS(439), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83660,13 +83495,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33213] = 4, - ACTIONS(2528), 1, + [33021] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(417), 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(415), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33074] = 4, + ACTIONS(2506), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2394), 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(2392), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + 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, + [33129] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83682,10 +83616,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 28, + ACTIONS(435), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -83711,11 +83646,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33268] = 3, + [33182] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83731,7 +83666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 29, + ACTIONS(2508), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83761,24 +83696,163 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33321] = 8, - ACTIONS(2394), 1, + [33235] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2514), 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(2512), 29, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2396), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_LBRACK, - ACTIONS(2400), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33288] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2518), 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, - STATE(998), 1, - sym_arguments, + ACTIONS(2516), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33341] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2530), 3, + ACTIONS(580), 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, - ACTIONS(2432), 11, + anon_sym_DOT, + ACTIONS(578), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [33394] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2522), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -83789,11 +83863,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2430), 26, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2520), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -83816,11 +83896,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33384] = 3, + [33447] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2534), 15, + ACTIONS(2526), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83836,7 +83916,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2532), 29, + ACTIONS(2524), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83866,11 +83946,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33437] = 3, + [33500] = 19, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2538), 1, + anon_sym_EQ, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2528), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_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, + [33585] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83886,7 +84032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 29, + ACTIONS(2562), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83916,11 +84062,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33490] = 3, + [33638] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83936,7 +84082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 29, + ACTIONS(2566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -83966,11 +84112,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33543] = 3, + [33691] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2538), 15, + ACTIONS(564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -83986,7 +84132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2536), 29, + ACTIONS(562), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84016,11 +84162,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33596] = 3, + [33744] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2542), 15, + ACTIONS(2572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84036,7 +84182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2540), 29, + ACTIONS(2570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84066,11 +84212,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33649] = 3, + [33797] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(401), 15, + ACTIONS(594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84086,7 +84232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(399), 29, + ACTIONS(592), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84116,11 +84262,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33702] = 3, + [33850] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2546), 15, + ACTIONS(2576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84136,7 +84282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2544), 29, + ACTIONS(2574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84166,128 +84312,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33755] = 19, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2552), 1, - anon_sym_EQ, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [33903] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2580), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2548), 18, + anon_sym_DOT, + ACTIONS(2578), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_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, - [33840] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 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(277), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -84298,11 +84362,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33925] = 3, + [33956] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(415), 15, + ACTIONS(447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84318,7 +84382,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(413), 29, + ACTIONS(445), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84348,11 +84412,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33978] = 3, + [34009] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2576), 15, + ACTIONS(2584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84368,7 +84432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2574), 29, + ACTIONS(2582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84398,11 +84462,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34031] = 3, + [34062] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2580), 15, + ACTIONS(2358), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84418,7 +84482,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2578), 29, + ACTIONS(2356), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84448,44 +84512,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34084] = 13, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [34115] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(598), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_AMP, anon_sym_DOT_DOT, - ACTIONS(2430), 26, + 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(596), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -84508,11 +84562,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34157] = 3, + [34168] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2584), 15, + ACTIONS(2588), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84528,7 +84582,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2582), 29, + ACTIONS(2586), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84558,41 +84612,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34210] = 10, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - STATE(998), 1, - sym_arguments, + [34221] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2592), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 7, 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(2430), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2590), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -84615,11 +84662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34277] = 3, + [34274] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2123), 15, + ACTIONS(572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84635,7 +84682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2125), 29, + ACTIONS(570), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84665,11 +84712,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34330] = 3, + [34327] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2588), 15, + ACTIONS(2596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84685,7 +84732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2586), 29, + ACTIONS(2594), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84715,77 +84762,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34383] = 19, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2592), 1, - anon_sym_EQ, - STATE(998), 1, - sym_arguments, + [34380] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2590), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_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, - [34468] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(419), 15, + ACTIONS(2600), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84801,7 +84782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(417), 29, + ACTIONS(2598), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84831,11 +84812,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34521] = 3, + [34433] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(435), 15, + ACTIONS(2604), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84851,7 +84832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(433), 29, + ACTIONS(2602), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84881,11 +84862,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34574] = 3, + [34486] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(586), 15, + ACTIONS(2608), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84901,7 +84882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(584), 29, + ACTIONS(2606), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84931,11 +84912,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34627] = 3, + [34539] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2596), 15, + ACTIONS(2612), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -84951,7 +84932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2594), 29, + ACTIONS(2610), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -84981,11 +84962,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34680] = 3, + [34592] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2366), 15, + ACTIONS(401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85001,7 +84982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2364), 29, + ACTIONS(399), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85031,11 +85012,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34733] = 3, + [34645] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2600), 15, + ACTIONS(590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85051,7 +85032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2598), 29, + ACTIONS(588), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85081,60 +85062,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34786] = 17, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [34698] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(329), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2550), 2, + ACTIONS(2526), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(327), 20, + anon_sym_DOT, + ACTIONS(2524), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85145,11 +85112,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34867] = 3, + [34751] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2604), 15, + ACTIONS(584), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85165,7 +85132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2602), 29, + ACTIONS(582), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85195,11 +85162,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34920] = 3, + [34804] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(590), 15, + ACTIONS(2616), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85215,7 +85182,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(588), 29, + ACTIONS(2614), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85245,11 +85212,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34973] = 3, + [34857] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(552), 15, + ACTIONS(2620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85265,7 +85232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(550), 29, + ACTIONS(2618), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85295,11 +85262,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35026] = 3, + [34910] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2099), 15, + ACTIONS(2624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85315,7 +85282,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2101), 29, + ACTIONS(2622), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85345,11 +85312,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35079] = 3, + [34963] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2608), 15, + ACTIONS(2628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85365,7 +85332,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2606), 29, + ACTIONS(2626), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85395,60 +85362,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35132] = 17, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [35016] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(413), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2612), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2610), 20, + anon_sym_DOT, + ACTIONS(411), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -85459,11 +85412,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35213] = 3, + [35069] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2616), 15, + ACTIONS(2632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85479,7 +85432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2614), 29, + ACTIONS(2630), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85509,11 +85462,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35266] = 3, + [35122] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(594), 15, + ACTIONS(2636), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85529,7 +85482,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(592), 29, + ACTIONS(2634), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85559,11 +85512,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35319] = 3, + [35175] = 19, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2640), 1, + anon_sym_EQ, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2620), 15, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2638), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_COMMA, + anon_sym_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, + [35260] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2644), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85579,7 +85598,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2618), 29, + ACTIONS(2642), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85609,11 +85628,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35372] = 3, + [35313] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2624), 15, + ACTIONS(421), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85629,7 +85648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2622), 29, + ACTIONS(419), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85659,11 +85678,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35425] = 3, + [35366] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(411), 15, + ACTIONS(2648), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85679,7 +85698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(409), 29, + ACTIONS(2646), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85709,11 +85728,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35478] = 3, + [35419] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(578), 15, + ACTIONS(2135), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85729,7 +85748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(576), 29, + ACTIONS(2137), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85759,11 +85778,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35531] = 3, + [35472] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2628), 15, + ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85779,7 +85798,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2626), 29, + ACTIONS(2406), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85809,11 +85828,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35584] = 3, + [35525] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2632), 15, + ACTIONS(2652), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85829,7 +85848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2630), 29, + ACTIONS(2650), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85859,11 +85878,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35637] = 3, + [35578] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2636), 15, + ACTIONS(2656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85879,7 +85898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2634), 29, + ACTIONS(2654), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -85909,50 +85928,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35690] = 15, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [35631] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2550), 2, + ACTIONS(2660), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2430), 22, + anon_sym_DOT, + ACTIONS(2658), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -85961,6 +85964,10 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -85971,11 +85978,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35767] = 3, + [35684] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2640), 15, + ACTIONS(425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -85991,7 +85998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2638), 29, + ACTIONS(423), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86021,59 +86028,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35820] = 16, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + [35737] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2550), 2, + ACTIONS(2664), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2430), 21, + anon_sym_DOT, + ACTIONS(2662), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86084,11 +86078,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35899] = 3, + [35790] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2326), 15, + ACTIONS(2338), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86104,7 +86098,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2324), 29, + ACTIONS(2336), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86134,11 +86128,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35952] = 3, + [35843] = 4, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86154,11 +86150,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(453), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -86184,11 +86179,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36005] = 3, + [35898] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2644), 15, + ACTIONS(2670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86204,7 +86199,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2642), 29, + ACTIONS(2668), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86234,65 +86229,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36058] = 22, - ACTIONS(2394), 1, + [35951] = 19, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2674), 1, anon_sym_EQ, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2646), 6, + ACTIONS(2672), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_as, anon_sym_COMMA, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86303,11 +86295,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36149] = 3, + [36036] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86323,7 +86315,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 29, + ACTIONS(2676), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86353,40 +86345,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36202] = 3, + [36089] = 11, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2658), 15, + ACTIONS(2534), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2536), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2682), 8, 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(2656), 29, + ACTIONS(2680), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -86403,11 +86403,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36255] = 3, + [36158] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2662), 15, + ACTIONS(2330), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86423,7 +86423,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2660), 29, + ACTIONS(2328), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86453,18 +86453,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36308] = 3, + [36211] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2666), 15, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2686), 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, @@ -86472,21 +86484,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2664), 29, + ACTIONS(2684), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -86503,39 +86509,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36361] = 12, - ACTIONS(2394), 1, + [36276] = 13, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2568), 1, - anon_sym_CARET, - STATE(998), 1, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2572), 2, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 5, + ACTIONS(2682), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, anon_sym_PIPE, - ACTIONS(2430), 26, + anon_sym_CARET, + ACTIONS(2680), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -86544,8 +86553,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -86562,11 +86569,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36432] = 3, + [36349] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(598), 15, + ACTIONS(2690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86582,7 +86589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(596), 29, + ACTIONS(2688), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86612,11 +86619,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36485] = 3, + [36402] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2670), 15, + ACTIONS(2694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86632,7 +86639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2668), 29, + ACTIONS(2692), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86662,77 +86669,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36538] = 19, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2674), 1, - anon_sym_EQ, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2672), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - anon_sym_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, - [36623] = 3, + [36455] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2322), 15, + ACTIONS(405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86748,7 +86689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2320), 29, + ACTIONS(403), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86778,11 +86719,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36676] = 3, + [36508] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2678), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -86798,7 +86739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2676), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -86828,42 +86769,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36729] = 11, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - STATE(998), 1, - sym_arguments, + [36561] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2698), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 6, 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(2430), 26, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_DOT, + ACTIONS(2696), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, @@ -86886,36 +86819,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36798] = 9, - ACTIONS(2394), 1, + [36614] = 10, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, anon_sym_DOT, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2530), 3, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 9, + ACTIONS(2682), 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, - ACTIONS(2430), 26, + ACTIONS(2680), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -86924,8 +86860,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -86942,46 +86876,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36863] = 3, + [36681] = 18, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2682), 1, + anon_sym_EQ, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2682), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2680), 29, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2680), 19, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -86992,47 +86941,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36916] = 4, - ACTIONS(2684), 1, - anon_sym_COLON_COLON, + [36764] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2384), 28, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2700), 6, 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87043,11 +87010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36971] = 3, + [36855] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(562), 15, + ACTIONS(576), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87063,7 +87030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(560), 29, + ACTIONS(574), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87093,11 +87060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37024] = 3, + [36908] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(423), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87113,7 +87080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(421), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87143,11 +87110,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37077] = 3, + [36961] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2688), 15, + ACTIONS(2712), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87163,7 +87130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2686), 29, + ACTIONS(2710), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87193,11 +87160,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37130] = 3, + [37014] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2692), 15, + ACTIONS(560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87213,7 +87180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2690), 29, + ACTIONS(558), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87243,11 +87210,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37183] = 3, + [37067] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(570), 15, + ACTIONS(2716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87263,7 +87230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(568), 29, + ACTIONS(2714), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87293,65 +87260,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37236] = 22, - ACTIONS(2394), 1, + [37120] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2694), 6, + ACTIONS(2718), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -87362,11 +87329,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37327] = 3, + [37211] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(409), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87382,7 +87349,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 29, + ACTIONS(407), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87412,11 +87379,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37380] = 3, + [37264] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(427), 15, + ACTIONS(2722), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87432,7 +87399,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(425), 29, + ACTIONS(2720), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87462,18 +87429,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37433] = 3, + [37317] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(431), 15, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2682), 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, @@ -87481,21 +87460,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(429), 29, + ACTIONS(2680), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -87512,40 +87485,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37486] = 3, + [37382] = 14, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2698), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2696), 29, + ACTIONS(2682), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2680), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -87562,54 +87546,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37539] = 19, - ACTIONS(2394), 1, + [37457] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2702), 1, - anon_sym_EQ, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2700), 18, + ACTIONS(277), 18, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -87628,11 +87612,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37624] = 3, + [37542] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2151), 15, + ACTIONS(2726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87648,7 +87632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2153), 29, + ACTIONS(2724), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87678,11 +87662,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37677] = 3, + [37595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2706), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87698,7 +87682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2704), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87728,11 +87712,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37730] = 3, + [37648] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2710), 15, + ACTIONS(429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87748,7 +87732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2708), 29, + ACTIONS(427), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87778,11 +87762,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37783] = 3, + [37701] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2714), 15, + ACTIONS(2730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87798,7 +87782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2712), 29, + ACTIONS(2728), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87828,11 +87812,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37836] = 3, + [37754] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2718), 15, + ACTIONS(2734), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87848,7 +87832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2716), 29, + ACTIONS(2732), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87878,11 +87862,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37889] = 3, + [37807] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2722), 15, + ACTIONS(2738), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87898,7 +87882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2720), 29, + ACTIONS(2736), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87928,11 +87912,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37942] = 3, + [37860] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(566), 15, + ACTIONS(568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -87948,7 +87932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(564), 29, + ACTIONS(566), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -87978,96 +87962,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37995] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2726), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + [37913] = 17, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, anon_sym_AMP, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2552), 1, anon_sym_PIPE, + ACTIONS(2554), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2724), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_as, - anon_sym_COMMA, - 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, - [38048] = 3, + ACTIONS(2682), 1, + anon_sym_EQ, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2730), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2728), 29, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2680), 20, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_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, @@ -88078,18 +88026,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38101] = 3, + [37994] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2734), 15, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2742), 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, @@ -88097,21 +88057,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2732), 29, + ACTIONS(2740), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -88128,11 +88082,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38154] = 3, + [38059] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2738), 15, + ACTIONS(2746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88148,7 +88102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2736), 29, + ACTIONS(2744), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88178,11 +88132,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38207] = 3, + [38112] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(405), 15, + ACTIONS(2750), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88198,7 +88152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(403), 29, + ACTIONS(2748), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88228,11 +88182,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38260] = 3, + [38165] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2742), 15, + ACTIONS(2131), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88248,7 +88202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2740), 29, + ACTIONS(2133), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88278,11 +88232,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38313] = 3, + [38218] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2746), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88298,7 +88252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2744), 29, + ACTIONS(453), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88328,40 +88282,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38366] = 3, + [38271] = 12, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2750), 15, + ACTIONS(2534), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2682), 6, 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(2748), 29, + ACTIONS(2680), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -88378,11 +88341,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38419] = 3, + [38342] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(443), 15, + ACTIONS(2754), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88398,7 +88361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(441), 29, + ACTIONS(2752), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88428,11 +88391,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38472] = 3, + [38395] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2754), 15, + ACTIONS(2151), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88448,7 +88411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2752), 29, + ACTIONS(2153), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88478,7 +88441,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38525] = 3, + [38448] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -88528,18 +88491,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38578] = 3, + [38501] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2762), 15, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2762), 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, @@ -88547,21 +88522,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2760), 29, + ACTIONS(2760), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -88578,11 +88547,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38631] = 3, + [38566] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2422), 15, + ACTIONS(2766), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88598,7 +88567,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2418), 29, + ACTIONS(2764), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88628,11 +88597,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38684] = 3, + [38619] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(439), 15, + ACTIONS(2770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88648,7 +88617,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(437), 29, + ACTIONS(2768), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88678,18 +88647,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38737] = 3, + [38672] = 6, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2766), 15, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(325), 14, 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, @@ -88698,11 +88673,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2764), 29, + ACTIONS(323), 26, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_LBRACK, @@ -88710,8 +88684,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -88728,11 +88700,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38790] = 3, + [38731] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(574), 15, + ACTIONS(2774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88748,7 +88720,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(572), 29, + ACTIONS(2772), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88778,11 +88750,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38843] = 3, + [38784] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2770), 15, + ACTIONS(433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88798,7 +88770,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2768), 29, + ACTIONS(431), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88828,46 +88800,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38896] = 3, + [38837] = 19, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2778), 1, + anon_sym_EQ, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2774), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2772), 29, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2776), 18, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -88878,11 +88866,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38949] = 3, + [38922] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2778), 15, + ACTIONS(2782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88898,7 +88886,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2776), 29, + ACTIONS(2780), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88928,11 +88916,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39002] = 3, + [38975] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2782), 15, + ACTIONS(2786), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -88948,7 +88936,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2780), 29, + ACTIONS(2784), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -88978,40 +88966,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39055] = 3, + [39028] = 15, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2786), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2784), 29, + ACTIONS(2682), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2680), 24, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_as, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -89028,7 +89028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39108] = 3, + [39105] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89077,7 +89077,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39160] = 3, + [39157] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89126,7 +89126,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39212] = 3, + [39209] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89175,7 +89175,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39264] = 3, + [39261] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -89224,164 +89224,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [39316] = 5, - ACTIONS(2804), 1, - anon_sym_POUND, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1068), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - ACTIONS(2197), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2195), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39372] = 7, - ACTIONS(2344), 1, - anon_sym_LBRACE, - ACTIONS(2346), 1, - anon_sym_COLON_COLON, - ACTIONS(2807), 1, - anon_sym_BANG, - STATE(993), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(548), 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(546), 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, - [39432] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2811), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - sym_metavariable, - ACTIONS(2809), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39484] = 3, + [39313] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 12, + ACTIONS(2806), 12, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACE, @@ -89394,7 +89241,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2813), 31, + ACTIONS(2804), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89418,462 +89265,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39536] = 25, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2817), 1, - anon_sym_SEMI, - ACTIONS(2819), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, - STATE(1767), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [39631] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2821), 1, - sym_identifier, - ACTIONS(2825), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_for, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - sym_metavariable, - STATE(1715), 1, - sym_scoped_type_identifier, - STATE(1758), 1, - sym_generic_type, - STATE(1859), 1, - sym_where_predicate, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2352), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2823), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2027), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2829), 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, - [39716] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2821), 1, - sym_identifier, - ACTIONS(2825), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_for, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - sym_metavariable, - STATE(1715), 1, - sym_scoped_type_identifier, - STATE(1758), 1, - sym_generic_type, - STATE(1859), 1, - sym_where_predicate, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2352), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2837), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2027), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2829), 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, - [39801] = 4, - ACTIONS(2843), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2841), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2839), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39854] = 4, - ACTIONS(2849), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2847), 14, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_POUND, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2845), 27, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_const, - anon_sym_ref, - anon_sym__, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [39907] = 25, - ACTIONS(361), 1, - anon_sym_RBRACK, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2851), 1, - anon_sym_SEMI, - ACTIONS(2853), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, - STATE(1860), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [40002] = 20, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2224), 1, - anon_sym_COLON_COLON, - ACTIONS(2855), 1, - sym_identifier, - ACTIONS(2859), 1, - sym_metavariable, - STATE(707), 1, - sym_scoped_type_identifier, - STATE(864), 1, - sym_generic_type, - STATE(1019), 1, - sym_function_type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2234), 1, - sym_function_modifiers, - STATE(2257), 1, - sym_scoped_identifier, - STATE(2328), 1, - sym_bracketed_type, - STATE(2329), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2857), 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, - [40086] = 3, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [39365] = 5, + ACTIONS(2808), 1, + anon_sym_POUND, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(1073), 10, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + ACTIONS(2223), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, - anon_sym_POUND, anon_sym_BANG, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(1075), 31, + ACTIONS(2221), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -89905,17 +89324,19 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40136] = 6, - ACTIONS(2306), 1, - anon_sym_BANG, - ACTIONS(2861), 1, + [39421] = 7, + ACTIONS(2332), 1, + anon_sym_LBRACE, + ACTIONS(2334), 1, anon_sym_COLON_COLON, - STATE(993), 1, + ACTIONS(2811), 1, + anon_sym_BANG, + STATE(983), 1, sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -89931,156 +89352,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 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, - [40192] = 24, - ACTIONS(2394), 1, + ACTIONS(453), 24, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(2396), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, anon_sym_QMARK, - ACTIONS(2650), 1, anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2863), 1, - anon_sym_RPAREN, - ACTIONS(2865), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, - STATE(1928), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [40284] = 24, - ACTIONS(381), 1, - anon_sym_RPAREN, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2867), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, - STATE(1869), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90091,22 +89377,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40376] = 3, + [39481] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 10, + ACTIONS(2815), 12, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_PLUS, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2688), 31, + ACTIONS(2813), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90131,18 +89419,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_impl, anon_sym_unsafe, + anon_sym_where, anon_sym_extern, anon_sym_dyn, - sym_mutable_specifier, sym_identifier, sym_self, sym_super, sym_crate, - [40426] = 3, + [39533] = 4, + ACTIONS(2821), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2841), 14, + ACTIONS(2819), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -90157,7 +89447,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2839), 27, + ACTIONS(2817), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90185,53 +89475,54 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40476] = 20, + [39586] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, ACTIONS(856), 1, anon_sym_COLON_COLON, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_LPAREN, + ACTIONS(2829), 1, + anon_sym_STAR, + ACTIONS(2833), 1, + anon_sym_for, ACTIONS(2835), 1, + anon_sym_AMP, + ACTIONS(2837), 1, sym_metavariable, - ACTIONS(2869), 1, - sym_identifier, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1258), 1, + STATE(1721), 1, sym_scoped_type_identifier, - STATE(1294), 1, + STATE(1773), 1, + sym_where_predicate, + STATE(1849), 1, sym_generic_type, - STATE(1317), 1, - sym_function_type, - STATE(2230), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2352), 1, + STATE(2323), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, + ACTIONS(2825), 2, + anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2871), 17, + STATE(2176), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2831), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90249,53 +89540,194 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40560] = 20, + [39671] = 25, + ACTIONS(612), 1, + anon_sym_RBRACK, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2839), 1, + anon_sym_SEMI, + ACTIONS(2841), 1, + anon_sym_COMMA, + STATE(1008), 1, + sym_arguments, + STATE(1904), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [39766] = 25, + ACTIONS(365), 1, + anon_sym_RBRACK, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2843), 1, + anon_sym_SEMI, + ACTIONS(2845), 1, + anon_sym_COMMA, + STATE(1008), 1, + sym_arguments, + STATE(1770), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [39861] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(658), 1, - anon_sym_fn, - ACTIONS(660), 1, - anon_sym_for, - ACTIONS(672), 1, - anon_sym_extern, ACTIONS(856), 1, anon_sym_COLON_COLON, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_LPAREN, + ACTIONS(2829), 1, + anon_sym_STAR, + ACTIONS(2833), 1, + anon_sym_for, ACTIONS(2835), 1, + anon_sym_AMP, + ACTIONS(2837), 1, sym_metavariable, - ACTIONS(2873), 1, - sym_identifier, - STATE(1219), 1, - sym_for_lifetimes, - STATE(1256), 1, + STATE(1721), 1, sym_scoped_type_identifier, - STATE(1298), 1, + STATE(1773), 1, + sym_where_predicate, + STATE(1849), 1, sym_generic_type, - STATE(1304), 1, - sym_function_type, - STATE(2230), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2240), 1, - sym_function_modifiers, - STATE(2352), 1, + STATE(2323), 1, sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, + ACTIONS(2847), 2, + anon_sym_SEMI, + anon_sym_LBRACE, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2871), 17, + STATE(2176), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2831), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90313,11 +89745,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40644] = 3, + [39946] = 4, + ACTIONS(2853), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2847), 14, + ACTIONS(2851), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -90332,7 +89766,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2845), 27, + ACTIONS(2849), 27, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90360,45 +89794,64 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [40694] = 5, - ACTIONS(2402), 1, - anon_sym_COLON_COLON, - ACTIONS(2807), 1, - anon_sym_BANG, + [39999] = 24, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2855), 1, + anon_sym_RPAREN, + ACTIONS(2857), 1, + anon_sym_COMMA, + STATE(1008), 1, + sym_arguments, + STATE(1807), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(546), 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, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90409,53 +89862,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40748] = 20, + [40091] = 20, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(660), 1, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, anon_sym_for, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, - ACTIONS(2218), 1, - anon_sym_fn, - ACTIONS(2224), 1, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2859), 1, + ACTIONS(2837), 1, sym_metavariable, - ACTIONS(2875), 1, + ACTIONS(2859), 1, sym_identifier, - STATE(708), 1, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1260), 1, sym_scoped_type_identifier, - STATE(881), 1, + STATE(1297), 1, sym_generic_type, - STATE(1007), 1, + STATE(1306), 1, sym_function_type, - STATE(1218), 1, - sym_for_lifetimes, - STATE(2234), 1, + STATE(2206), 1, sym_function_modifiers, - STATE(2257), 1, - sym_scoped_identifier, - STATE(2328), 1, + STATE(2241), 1, sym_bracketed_type, - STATE(2329), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, - ACTIONS(2232), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(2857), 17, + ACTIONS(2861), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -90473,146 +89926,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [40832] = 23, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2877), 1, - anon_sym_RBRACE, - ACTIONS(2879), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, + [40175] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [40921] = 23, - ACTIONS(2394), 1, + ACTIONS(2851), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2560), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - ACTIONS(2883), 1, - anon_sym_RBRACE, - STATE(998), 1, - sym_arguments, + anon_sym_DASH, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2849), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(1157), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [41010] = 3, + anon_sym_SQUOTE, + anon_sym_POUND, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_AMP, + sym_metavariable, + ACTIONS(1159), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40275] = 5, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2811), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 16, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90626,13 +90044,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2342), 24, + ACTIONS(453), 24, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RBRACE, 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, @@ -90651,127 +90069,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41059] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [40329] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2819), 14, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + anon_sym_POUND, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2897), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET, - STATE(44), 1, - sym_block, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 2, - anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2895), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2907), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2911), 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, - [41148] = 22, - ACTIONS(2394), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2817), 27, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_const, + anon_sym_ref, + anon_sym__, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40379] = 24, + ACTIONS(385), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + ACTIONS(2863), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, + STATE(1793), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2913), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -90782,62 +90184,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41235] = 4, - ACTIONS(2915), 1, + [40471] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2865), 1, sym_identifier, + ACTIONS(2869), 1, + sym_metavariable, + STATE(709), 1, + sym_scoped_type_identifier, + STATE(839), 1, + sym_generic_type, + STATE(1009), 1, + sym_function_type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2243), 1, + sym_function_modifiers, + STATE(2260), 1, + sym_scoped_identifier, + STATE(2331), 1, + sym_bracketed_type, + STATE(2332), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_as, - anon_sym_EQ, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2215), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + ACTIONS(2867), 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, + [40555] = 20, + ACTIONS(77), 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(2384), 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, - [41286] = 5, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(2201), 1, + anon_sym_fn, + ACTIONS(2207), 1, + anon_sym_COLON_COLON, + ACTIONS(2869), 1, + sym_metavariable, + ACTIONS(2871), 1, + sym_identifier, + STATE(707), 1, + sym_scoped_type_identifier, + STATE(829), 1, + sym_generic_type, + STATE(1015), 1, + sym_function_type, + STATE(1220), 1, + sym_for_lifetimes, + STATE(2243), 1, + sym_function_modifiers, + STATE(2260), 1, + sym_scoped_identifier, + STATE(2331), 1, + sym_bracketed_type, + STATE(2332), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(2215), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + ACTIONS(2867), 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, + [40639] = 6, ACTIONS(2306), 1, anon_sym_BANG, - ACTIONS(2917), 1, + ACTIONS(2873), 1, anon_sym_COLON_COLON, + STATE(983), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -90853,7 +90338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(546), 23, + ACTIONS(453), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -90877,128 +90362,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41339] = 23, - ACTIONS(2394), 1, + [40695] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2654), 10, anon_sym_LPAREN, - ACTIONS(2396), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2919), 1, - anon_sym_RPAREN, - ACTIONS(2921), 1, - anon_sym_COMMA, - STATE(998), 1, - sym_arguments, + sym_metavariable, + ACTIONS(2656), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [40745] = 20, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(676), 1, + anon_sym_fn, + ACTIONS(678), 1, + anon_sym_for, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(856), 1, + anon_sym_COLON_COLON, + ACTIONS(2837), 1, + sym_metavariable, + ACTIONS(2875), 1, + sym_identifier, + STATE(1222), 1, + sym_for_lifetimes, + STATE(1258), 1, + sym_scoped_type_identifier, + STATE(1290), 1, + sym_generic_type, + STATE(1322), 1, + sym_function_type, + STATE(2206), 1, + sym_function_modifiers, + STATE(2241), 1, + sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [41428] = 23, - ACTIONS(540), 1, - anon_sym_RPAREN, - ACTIONS(2394), 1, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + ACTIONS(2861), 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, + [40829] = 23, + ACTIONS(638), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(998), 1, + STATE(225), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91009,11 +90539,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41517] = 3, + [40918] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 16, + ACTIONS(2364), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_BANG, @@ -91030,7 +90560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2354), 24, + ACTIONS(2366), 24, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -91055,127 +90585,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41566] = 22, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - STATE(998), 1, - sym_arguments, + [40967] = 17, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(943), 1, + anon_sym_COLON_COLON, + ACTIONS(2905), 1, + sym_identifier, + ACTIONS(2907), 1, + anon_sym_RPAREN, + ACTIONS(2911), 1, + anon_sym_COMMA, + ACTIONS(2915), 1, + sym_metavariable, + STATE(1512), 1, + sym_scoped_identifier, + STATE(2310), 1, + sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2925), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(2530), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2570), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2654), 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, - [41653] = 23, - ACTIONS(558), 1, - anon_sym_RPAREN, - ACTIONS(2394), 1, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1052), 2, + sym_string_literal, + sym_boolean_literal, + STATE(1864), 2, + sym_meta_item, + sym__literal, + ACTIONS(2913), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2909), 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, + [41044] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2923), 1, + ACTIONS(2917), 1, + anon_sym_RPAREN, + ACTIONS(2919), 1, anon_sym_COMMA, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91186,62 +90711,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41742] = 23, - ACTIONS(265), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [41133] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2921), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91252,62 +90776,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41831] = 23, - ACTIONS(2394), 1, + [41220] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2927), 1, - anon_sym_RBRACE, - ACTIONS(2929), 1, - anon_sym_COMMA, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2923), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91318,62 +90841,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41920] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, - anon_sym_AMP, - ACTIONS(2897), 1, - anon_sym_DOT_DOT, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET, - STATE(63), 1, - sym_block, - STATE(998), 1, - sym_arguments, + [41307] = 4, + ACTIONS(2925), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2394), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2891), 2, + anon_sym_STAR, + anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + anon_sym_DOT, + ACTIONS(2392), 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, - ACTIONS(2911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91384,49 +90888,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42009] = 17, + [41358] = 19, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2823), 1, sym_identifier, - ACTIONS(2933), 1, - anon_sym_RPAREN, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(2941), 1, + ACTIONS(2827), 1, + anon_sym_LPAREN, + ACTIONS(2829), 1, + anon_sym_STAR, + ACTIONS(2833), 1, + anon_sym_for, + ACTIONS(2835), 1, + anon_sym_AMP, + ACTIONS(2837), 1, sym_metavariable, - STATE(1519), 1, - sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(1721), 1, + sym_scoped_type_identifier, + STATE(1773), 1, + sym_where_predicate, + STATE(1849), 1, + sym_generic_type, + STATE(2241), 1, sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(979), 2, - sym_string_literal, - sym_boolean_literal, - STATE(1915), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 17, + STATE(2176), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2831), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -91444,62 +90950,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [42086] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [41439] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(30), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + ACTIONS(2929), 1, + anon_sym_RBRACE, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91510,14 +91016,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42175] = 3, + [41528] = 5, + ACTIONS(2306), 1, + anon_sym_BANG, + ACTIONS(2931), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2360), 16, + ACTIONS(455), 15, anon_sym_PLUS, anon_sym_STAR, - anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91531,13 +91040,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2362), 24, + ACTIONS(453), 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, @@ -91556,61 +91064,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42224] = 22, - ACTIONS(2394), 1, + [41581] = 19, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(856), 1, + anon_sym_COLON_COLON, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(2823), 1, + sym_identifier, + ACTIONS(2827), 1, + anon_sym_LPAREN, + ACTIONS(2829), 1, + anon_sym_STAR, + ACTIONS(2833), 1, + anon_sym_for, + ACTIONS(2835), 1, + anon_sym_AMP, + ACTIONS(2837), 1, + sym_metavariable, + STATE(1717), 1, + sym_where_predicate, + STATE(1721), 1, + sym_scoped_type_identifier, + STATE(1849), 1, + sym_generic_type, + STATE(2241), 1, + sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + STATE(2323), 1, + sym_scoped_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(862), 3, + sym_self, + sym_super, + sym_crate, + STATE(2176), 5, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(2831), 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, + [41662] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2943), 2, + ACTIONS(2933), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91621,62 +91191,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42311] = 23, - ACTIONS(2394), 1, + [41749] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2945), 1, - anon_sym_LBRACE, - STATE(69), 1, - sym_match_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2935), 1, + anon_sym_RBRACE, + ACTIONS(2937), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91687,62 +91257,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42400] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [41838] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(64), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2939), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91753,61 +91322,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42489] = 22, - ACTIONS(2394), 1, + [41925] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - STATE(998), 1, + STATE(71), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2947), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91818,61 +91388,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42576] = 22, - ACTIONS(2394), 1, + [42014] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2344), 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(2346), 24, anon_sym_LPAREN, - ACTIONS(2396), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + anon_sym_QMARK, + anon_sym_as, + 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, + [42063] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2949), 2, + ACTIONS(2941), 2, anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91883,62 +91499,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42663] = 23, - ACTIONS(2394), 1, + [42150] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2923), 1, - anon_sym_COMMA, - ACTIONS(2951), 1, - anon_sym_RPAREN, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2943), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -91949,123 +91564,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42752] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2821), 1, - sym_identifier, - ACTIONS(2825), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_for, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - sym_metavariable, - STATE(1715), 1, - sym_scoped_type_identifier, - STATE(1758), 1, - sym_generic_type, - STATE(1859), 1, - sym_where_predicate, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2352), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2027), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2829), 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, - [42833] = 22, - ACTIONS(2394), 1, + [42237] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - STATE(998), 1, + STATE(51), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2953), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92076,61 +91630,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42920] = 22, - ACTIONS(2394), 1, + [42326] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - STATE(998), 1, + STATE(55), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2955), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92141,62 +91696,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43007] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [42415] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(47), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2945), 1, + anon_sym_RPAREN, + ACTIONS(2947), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92207,62 +91762,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43096] = 23, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [42504] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(70), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2949), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92273,62 +91827,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43185] = 23, - ACTIONS(15), 1, + [42591] = 23, + ACTIONS(638), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(66), 1, + STATE(237), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92339,61 +91893,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43274] = 22, - ACTIONS(2394), 1, + [42680] = 23, + ACTIONS(265), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2957), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92404,62 +91959,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43361] = 23, - ACTIONS(2394), 1, + [42769] = 23, + ACTIONS(271), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - ACTIONS(2959), 1, - anon_sym_RBRACE, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92470,62 +92025,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43450] = 23, - ACTIONS(255), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [42858] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2324), 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(2326), 24, anon_sym_LPAREN, - ACTIONS(2396), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + anon_sym_QMARK, + anon_sym_as, + 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, + [42907] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2951), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92536,62 +92136,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43539] = 23, - ACTIONS(2394), 1, + [42994] = 23, + ACTIONS(586), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - ACTIONS(2961), 1, - anon_sym_RBRACE, - STATE(998), 1, + ACTIONS(2919), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92602,62 +92202,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43628] = 23, - ACTIONS(269), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [43083] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - STATE(998), 1, + ACTIONS(2953), 1, + anon_sym_RBRACE, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92668,62 +92268,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43717] = 23, - ACTIONS(2394), 1, + [43172] = 23, + ACTIONS(257), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - ACTIONS(2963), 1, - anon_sym_RBRACE, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92734,62 +92334,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43806] = 23, - ACTIONS(263), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [43261] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(720), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92800,62 +92400,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43895] = 23, - ACTIONS(267), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [43350] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - STATE(998), 1, + ACTIONS(2955), 1, + anon_sym_LBRACE, + STATE(1008), 1, sym_arguments, + STATE(1026), 1, + sym_match_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92866,62 +92466,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43984] = 23, - ACTIONS(740), 1, + [43439] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(222), 1, + STATE(32), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92932,62 +92532,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44073] = 23, - ACTIONS(740), 1, + [43528] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(223), 1, + STATE(50), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -92998,62 +92598,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44162] = 23, - ACTIONS(740), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [43617] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(226), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + ACTIONS(2957), 1, + anon_sym_RBRACE, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93064,62 +92664,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44251] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [43706] = 23, + ACTIONS(267), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(725), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93130,42 +92730,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44340] = 3, + [43795] = 23, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + ACTIONS(2959), 1, + anon_sym_RBRACE, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2332), 16, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2334), 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, - anon_sym_PIPE_PIPE, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93176,62 +92796,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44389] = 23, - ACTIONS(15), 1, + [43884] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(32), 1, - sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, + STATE(1029), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93242,62 +92862,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44478] = 23, - ACTIONS(740), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [43973] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(207), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2963), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93308,62 +92928,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44567] = 23, - ACTIONS(740), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [44062] = 23, + ACTIONS(103), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(229), 1, - sym_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93374,62 +92994,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44656] = 23, - ACTIONS(2394), 1, + [44151] = 23, + ACTIONS(638), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2965), 1, - anon_sym_LBRACE, - STATE(990), 1, - sym_match_block, - STATE(998), 1, + STATE(227), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93440,124 +93060,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44745] = 19, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(856), 1, - anon_sym_COLON_COLON, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(2821), 1, - sym_identifier, - ACTIONS(2825), 1, - anon_sym_LPAREN, - ACTIONS(2827), 1, - anon_sym_STAR, - ACTIONS(2831), 1, - anon_sym_for, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2835), 1, - sym_metavariable, - STATE(1715), 1, - sym_scoped_type_identifier, - STATE(1727), 1, - sym_where_predicate, - STATE(1758), 1, - sym_generic_type, - STATE(2230), 1, - sym_bracketed_type, - STATE(2231), 1, - sym_generic_type_with_turbofish, - STATE(2352), 1, - sym_scoped_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(862), 3, - sym_self, - sym_super, - sym_crate, - STATE(2027), 5, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(2829), 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, - [44826] = 23, - ACTIONS(740), 1, + [44240] = 23, + ACTIONS(638), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(232), 1, + STATE(217), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93568,62 +93126,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44915] = 23, - ACTIONS(279), 1, + [44329] = 23, + ACTIONS(638), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(973), 1, + STATE(206), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93634,61 +93192,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45004] = 22, - ACTIONS(2394), 1, + [44418] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - STATE(998), 1, + ACTIONS(2927), 1, + anon_sym_SEMI, + ACTIONS(2965), 1, + anon_sym_RBRACE, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2967), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93699,61 +93258,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45091] = 22, - ACTIONS(2394), 1, + [44507] = 23, + ACTIONS(638), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - STATE(998), 1, + STATE(233), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2969), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93764,62 +93324,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45178] = 23, - ACTIONS(2394), 1, + [44596] = 23, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - ACTIONS(2971), 1, - anon_sym_RBRACE, - STATE(998), 1, + STATE(53), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93830,62 +93390,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45267] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, - anon_sym_AMP, - ACTIONS(2897), 1, - anon_sym_DOT_DOT, - ACTIONS(2899), 1, - anon_sym_AMP_AMP, - ACTIONS(2901), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, - anon_sym_PIPE, - ACTIONS(2905), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, - STATE(1000), 1, - sym_block, + [44685] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2352), 16, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2891), 2, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + anon_sym_DOT, + ACTIONS(2354), 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, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93896,62 +93436,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45356] = 23, - ACTIONS(2394), 1, + [44734] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - ACTIONS(2973), 1, - anon_sym_RBRACE, - STATE(998), 1, + ACTIONS(2967), 1, + anon_sym_LBRACE, + STATE(65), 1, + sym_match_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -93962,62 +93502,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45445] = 23, - ACTIONS(740), 1, + [44823] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(237), 1, + STATE(957), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94028,62 +93568,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45534] = 23, - ACTIONS(2394), 1, + [44912] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2975), 1, - anon_sym_LBRACE, - STATE(238), 1, - sym_match_block, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + ACTIONS(2969), 1, + anon_sym_RBRACE, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94094,62 +93634,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45623] = 23, - ACTIONS(279), 1, + [45001] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, - sym_arguments, - STATE(1047), 1, + STATE(61), 1, sym_block, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94160,62 +93700,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45712] = 23, - ACTIONS(740), 1, + [45090] = 23, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(206), 1, - sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, + STATE(1059), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94226,62 +93766,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45801] = 23, - ACTIONS(273), 1, - anon_sym_RBRACE, - ACTIONS(2394), 1, + [45179] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2971), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94292,62 +93831,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45890] = 23, - ACTIONS(279), 1, + [45266] = 23, + ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, - sym_arguments, - STATE(1029), 1, + STATE(31), 1, sym_block, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94358,62 +93897,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45979] = 23, + [45355] = 23, ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(996), 1, + STATE(726), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94424,62 +93963,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46068] = 23, - ACTIONS(279), 1, + [45444] = 23, + ACTIONS(638), 1, anon_sym_LBRACE, - ACTIONS(2394), 1, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(726), 1, + STATE(243), 1, sym_block, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94490,62 +94029,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46157] = 23, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(2394), 1, + [45533] = 23, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2648), 1, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2889), 1, + ACTIONS(2881), 1, anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2973), 1, + anon_sym_LBRACE, + STATE(221), 1, + sym_match_block, + STATE(1008), 1, sym_arguments, - STATE(1042), 1, - sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94556,57 +94095,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46246] = 19, - ACTIONS(283), 1, - anon_sym_EQ, - ACTIONS(2394), 1, + [45622] = 23, + ACTIONS(443), 1, + anon_sym_RPAREN, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2919), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(277), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94617,54 +94161,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46326] = 16, - ACTIONS(2394), 1, + [45711] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2899), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2903), 1, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, + STATE(1008), 1, sym_arguments, + STATE(1039), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2430), 16, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94675,60 +94227,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46400] = 22, - ACTIONS(2394), 1, + [45800] = 23, + ACTIONS(638), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2977), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(207), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94739,60 +94293,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46486] = 22, - ACTIONS(2394), 1, + [45889] = 23, + ACTIONS(263), 1, + anon_sym_RBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2646), 1, - anon_sym_LBRACE, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2927), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94803,60 +94359,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46572] = 22, - ACTIONS(2394), 1, + [45978] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2979), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2975), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94867,111 +94424,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46658] = 9, - ACTIONS(2394), 1, + [46065] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - STATE(998), 1, - sym_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 9, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2430), 21, - anon_sym_LBRACE, + ACTIONS(2702), 1, anon_sym_QMARK, + ACTIONS(2704), 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, - [46718] = 22, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2981), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(978), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -94982,60 +94490,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46804] = 22, - ACTIONS(2394), 1, + [46154] = 23, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_COMMA, - STATE(998), 1, + STATE(975), 1, + sym_block, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95046,57 +94556,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46890] = 19, - ACTIONS(2394), 1, + [46243] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2702), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2977), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2700), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95107,13 +94620,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46970] = 4, - ACTIONS(2454), 1, + [46329] = 4, + ACTIONS(2979), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2422), 15, + ACTIONS(2394), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -95129,7 +94642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2418), 23, + ACTIONS(2392), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -95153,60 +94666,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47020] = 22, - ACTIONS(2394), 1, + [46379] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2985), 1, + ACTIONS(2981), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95217,60 +94730,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47106] = 22, - ACTIONS(2394), 1, + [46465] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2987), 1, + ACTIONS(2983), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95281,57 +94794,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47192] = 19, - ACTIONS(2394), 1, + [46551] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2674), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2985), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2672), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95342,60 +94858,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47272] = 22, - ACTIONS(2394), 1, + [46637] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2989), 1, - anon_sym_RBRACK, - STATE(998), 1, + ACTIONS(2987), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95406,60 +94922,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47358] = 22, - ACTIONS(2394), 1, + [46723] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2991), 1, + ACTIONS(2989), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95470,60 +94986,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47444] = 22, - ACTIONS(2394), 1, + [46809] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2993), 1, + ACTIONS(2991), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95534,60 +95050,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47530] = 22, - ACTIONS(2394), 1, + [46895] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2995), 1, + ACTIONS(2993), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95598,60 +95114,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47616] = 22, - ACTIONS(2394), 1, + [46981] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2997), 1, - anon_sym_SEMI, - STATE(998), 1, + ACTIONS(2919), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95662,57 +95178,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47702] = 19, - ACTIONS(2394), 1, + [47067] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2552), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2995), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2548), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95723,118 +95242,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47782] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(2999), 1, - sym_identifier, - ACTIONS(3005), 1, - sym_metavariable, - STATE(1334), 1, - sym_scoped_identifier, - STATE(1376), 1, - sym__literal_pattern, - STATE(2224), 1, - sym_bracketed_type, - STATE(2226), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3003), 3, - sym_self, - sym_super, - sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3001), 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, - [47856] = 22, - ACTIONS(2394), 1, + [47153] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3007), 1, - anon_sym_SEMI, - STATE(998), 1, + ACTIONS(2997), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95845,60 +95306,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47942] = 22, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3009), 1, - anon_sym_SEMI, - STATE(998), 1, - sym_arguments, + [47239] = 4, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2410), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + anon_sym_DOT, + ACTIONS(2406), 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, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95909,60 +95352,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48028] = 22, - ACTIONS(2394), 1, + [47289] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2694), 1, - anon_sym_LBRACE, - ACTIONS(2889), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(2999), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2911), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -95973,60 +95416,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48114] = 22, - ACTIONS(2394), 1, + [47375] = 19, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3011), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2672), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96037,60 +95477,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48200] = 22, - ACTIONS(2394), 1, + [47455] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2923), 1, - anon_sym_COMMA, - STATE(998), 1, + ACTIONS(3001), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96101,42 +95541,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48286] = 4, - ACTIONS(3013), 1, - anon_sym_COLON_COLON, + [47541] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3003), 1, + anon_sym_SEMI, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(548), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(546), 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, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96147,96 +95605,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48336] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(690), 1, - anon_sym_DASH, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, - anon_sym_COLON_COLON, - ACTIONS(3015), 1, - sym_identifier, - ACTIONS(3021), 1, - sym_metavariable, - STATE(1346), 1, - sym_scoped_identifier, - STATE(1379), 1, - sym__literal_pattern, - STATE(2224), 1, - sym_bracketed_type, - STATE(2226), 1, - sym_generic_type_with_turbofish, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(696), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3019), 3, - sym_self, - sym_super, - sym_crate, - STATE(1328), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(692), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3017), 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, - [48410] = 16, + [47627] = 16, ACTIONS(77), 1, anon_sym_LT, ACTIONS(91), 1, aux_sym_string_literal_token1, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - ACTIONS(3023), 1, + ACTIONS(3005), 1, anon_sym_RPAREN, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(93), 2, anon_sym_true, anon_sym_false, - STATE(979), 2, + STATE(1052), 2, sym_string_literal, sym_boolean_literal, - STATE(2119), 2, + STATE(2079), 2, sym_meta_item, sym__literal, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, @@ -96245,7 +95645,7 @@ static uint16_t ts_small_parse_table[] = { sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96263,51 +95663,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [48484] = 13, - ACTIONS(2394), 1, + [47701] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2700), 1, + anon_sym_LBRACE, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2903), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + ACTIONS(2891), 1, + anon_sym_AMP_AMP, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2909), 2, + ACTIONS(2883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2430), 21, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2903), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96318,46 +95727,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48552] = 8, - ACTIONS(2394), 1, + [47787] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, anon_sym_DOT, - STATE(998), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3007), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 11, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [47873] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, anon_sym_AMP, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - anon_sym_DASH, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, anon_sym_PIPE, + ACTIONS(2554), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2430), 21, - anon_sym_LBRACE, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, + ACTIONS(2704), 1, anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3009), 1, + anon_sym_RBRACK, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96368,42 +95855,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48610] = 10, - ACTIONS(2394), 1, + [47959] = 11, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - STATE(998), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 7, + ACTIONS(2682), 8, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_DOT_DOT, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2430), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2680), 19, anon_sym_LBRACE, 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, @@ -96420,22 +95908,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48672] = 4, - ACTIONS(3029), 1, - anon_sym_COLON_COLON, + [48023] = 4, + ACTIONS(3013), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 8, - anon_sym_LPAREN, + ACTIONS(3015), 8, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, anon_sym_BANG, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3025), 30, + ACTIONS(3011), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96466,55 +95954,60 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [48722] = 17, - ACTIONS(2394), 1, + [48073] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2899), 1, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3017), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(329), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(327), 15, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96525,57 +96018,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48798] = 19, - ACTIONS(2394), 1, + [48159] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2592), 1, - anon_sym_EQ, - ACTIONS(2893), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2897), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2899), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3019), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2895), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2909), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2590), 13, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_as, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96586,60 +96082,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48878] = 22, - ACTIONS(2394), 1, + [48245] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(943), 1, + anon_sym_COLON_COLON, + ACTIONS(3021), 1, + sym_identifier, + ACTIONS(3027), 1, + sym_metavariable, + STATE(1341), 1, + sym_scoped_identifier, + STATE(1389), 1, + sym__literal_pattern, + STATE(2237), 1, + sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3025), 3, + sym_self, + sym_super, + sym_crate, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3023), 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, + [48319] = 19, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2538), 1, + anon_sym_EQ, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3031), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2528), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96650,60 +96201,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48964] = 22, - ACTIONS(2394), 1, + [48399] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3033), 1, - anon_sym_RBRACK, - STATE(998), 1, + ACTIONS(3029), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -96714,65 +96265,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49050] = 12, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2893), 1, - anon_sym_AMP, + [48485] = 16, + ACTIONS(77), 1, + anon_sym_LT, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(943), 1, + anon_sym_COLON_COLON, ACTIONS(2905), 1, - anon_sym_CARET, - STATE(998), 1, - sym_arguments, + sym_identifier, + ACTIONS(2915), 1, + sym_metavariable, + ACTIONS(3031), 1, + anon_sym_RPAREN, + STATE(1512), 1, + sym_scoped_identifier, + STATE(2310), 1, + sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2909), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2432), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - anon_sym_PIPE, - ACTIONS(2430), 21, - anon_sym_LBRACE, - 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, - [49116] = 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1052), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2079), 2, + sym_meta_item, + sym__literal, + ACTIONS(2913), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2909), 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, + [48559] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3037), 9, + ACTIONS(2798), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -96782,7 +96337,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3035), 30, + ACTIONS(2796), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96813,13 +96368,60 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49164] = 4, - ACTIONS(3039), 1, + [48607] = 6, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(325), 14, + 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, + anon_sym_DOT, + ACTIONS(323), 21, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48661] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 8, + ACTIONS(3035), 9, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_SQUOTE, @@ -96828,7 +96430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3025), 30, + ACTIONS(3033), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96859,111 +96461,137 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [49214] = 22, - ACTIONS(2394), 1, + [48709] = 9, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2762), 13, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, - ACTIONS(2560), 1, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2760), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48769] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3041), 1, + ACTIONS(3037), 1, anon_sym_EQ_GT, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 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, - [49300] = 16, - ACTIONS(77), 1, - anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48855] = 4, + ACTIONS(3039), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, - sym_metavariable, - ACTIONS(3043), 1, - anon_sym_RPAREN, - STATE(1519), 1, - sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(979), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2119), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 17, + ACTIONS(3015), 8, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_LT, + anon_sym_AMP, + sym_metavariable, + ACTIONS(3011), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -96981,60 +96609,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [49374] = 22, - ACTIONS(2394), 1, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [48905] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3045), 1, - anon_sym_RBRACK, - STATE(998), 1, + ACTIONS(3041), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97045,60 +96686,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49460] = 22, - ACTIONS(2394), 1, + [48991] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3047), 1, - anon_sym_COMMA, - STATE(998), 1, + ACTIONS(3043), 1, + anon_sym_SEMI, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97109,60 +96750,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49546] = 22, - ACTIONS(2394), 1, + [49077] = 13, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3049), 1, - anon_sym_RBRACK, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2682), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97173,60 +96805,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49632] = 22, - ACTIONS(2394), 1, + [49145] = 19, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2640), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3051), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2638), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97237,42 +96866,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49718] = 4, - ACTIONS(2420), 1, - anon_sym_COLON_COLON, + [49225] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3045), 1, + anon_sym_COMMA, + STATE(1008), 1, + sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2422), 15, + ACTIONS(2534), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_DOT_DOT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_DOT, - ACTIONS(2418), 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, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97283,60 +96930,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49768] = 22, - ACTIONS(2394), 1, + [49311] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3053), 1, + ACTIONS(3047), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97347,60 +96994,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49854] = 22, - ACTIONS(2394), 1, + [49397] = 14, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3055), 1, - anon_sym_COMMA, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2682), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + ACTIONS(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97411,60 +97050,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49940] = 22, - ACTIONS(2394), 1, - anon_sym_LPAREN, - ACTIONS(2396), 1, - anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, - anon_sym_AMP, - ACTIONS(2560), 1, - anon_sym_DOT_DOT, - ACTIONS(2562), 1, - anon_sym_AMP_AMP, - ACTIONS(2564), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, - anon_sym_PIPE, - ACTIONS(2568), 1, - anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3057), 1, - anon_sym_RBRACK, - STATE(998), 1, - sym_arguments, + [49467] = 4, + ACTIONS(3049), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(455), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2554), 2, + anon_sym_STAR, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + anon_sym_AMP, + anon_sym_DOT_DOT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + anon_sym_DOT, + ACTIONS(453), 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, - ACTIONS(2654), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97475,52 +97096,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50026] = 15, - ACTIONS(2394), 1, + [49517] = 18, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2682), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2903), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + ACTIONS(2891), 1, + anon_sym_AMP_AMP, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2897), 1, anon_sym_CARET, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2432), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2430), 17, + ACTIONS(2680), 14, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -97532,11 +97156,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50098] = 3, + [49595] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 9, + ACTIONS(2794), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -97546,7 +97170,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(2796), 30, + ACTIONS(2792), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97577,60 +97201,60 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [50146] = 22, - ACTIONS(2394), 1, + [49643] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3059), 1, - anon_sym_SEMI, - STATE(998), 1, + ACTIONS(3051), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97641,60 +97265,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50232] = 22, - ACTIONS(2394), 1, + [49729] = 9, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2686), 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(2684), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49789] = 19, + ACTIONS(283), 1, + anon_sym_EQ, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2885), 1, + anon_sym_AMP, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3061), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(277), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97705,43 +97377,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50318] = 11, - ACTIONS(2394), 1, + [49869] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2718), 1, + anon_sym_LBRACE, + ACTIONS(2881), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - STATE(998), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + ACTIONS(2891), 1, + anon_sym_AMP_AMP, + ACTIONS(2893), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2895), 1, + anon_sym_PIPE, + ACTIONS(2897), 1, + anon_sym_CARET, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2885), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2909), 2, + ACTIONS(2883), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2432), 6, + ACTIONS(2899), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2903), 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, + [49955] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2742), 13, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, + anon_sym_AMP, + anon_sym_DASH, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(2430), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2740), 19, anon_sym_LBRACE, 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, @@ -97758,13 +97492,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50382] = 4, - ACTIONS(3063), 1, + [50015] = 4, + ACTIONS(2408), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2386), 15, + ACTIONS(2410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_EQ, @@ -97780,7 +97514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_DOT, - ACTIONS(2384), 23, + ACTIONS(2406), 23, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LBRACK, @@ -97804,21 +97538,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50432] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2802), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_SQUOTE, - anon_sym_BANG, + [50065] = 16, + ACTIONS(77), 1, anon_sym_LT, + ACTIONS(708), 1, + anon_sym_DASH, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(943), 1, anon_sym_COLON_COLON, - anon_sym_AMP, + ACTIONS(3053), 1, + sym_identifier, + ACTIONS(3059), 1, sym_metavariable, - ACTIONS(2800), 30, + STATE(1354), 1, + sym_scoped_identifier, + STATE(1359), 1, + sym__literal_pattern, + STATE(2237), 1, + sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(714), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3057), 3, + sym_self, + sym_super, + sym_crate, + STATE(1309), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(710), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3055), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97836,24 +97596,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [50480] = 3, + [50139] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3061), 1, + anon_sym_SEMI, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [50225] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3067), 9, + ACTIONS(3065), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -97863,7 +97674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3065), 30, + ACTIONS(3063), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97894,11 +97705,11 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [50528] = 3, + [50273] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3071), 9, + ACTIONS(3069), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -97908,7 +97719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_AMP, sym_metavariable, - ACTIONS(3069), 30, + ACTIONS(3067), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -97939,55 +97750,183 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [50576] = 17, - ACTIONS(2394), 1, + [50321] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, + anon_sym_PIPE, + ACTIONS(2554), 1, + anon_sym_CARET, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2893), 1, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3071), 1, + anon_sym_SEMI, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [50407] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2899), 1, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_CARET, - STATE(998), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, + anon_sym_QMARK, + ACTIONS(2704), 1, + anon_sym_as, + ACTIONS(2706), 1, + anon_sym_EQ, + ACTIONS(3073), 1, + anon_sym_COMMA, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2612), 2, + ACTIONS(2534), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2540), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2544), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2558), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2536), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2556), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2708), 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, + [50493] = 17, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2682), 1, anon_sym_EQ, + ACTIONS(2885), 1, + anon_sym_AMP, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2885), 2, + ACTIONS(2895), 1, + anon_sym_PIPE, + ACTIONS(2897), 1, + anon_sym_CARET, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2891), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2909), 2, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2887), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2907), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2610), 15, + ACTIONS(2680), 15, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -97998,60 +97937,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50652] = 22, - ACTIONS(2394), 1, + [50569] = 22, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, - anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2542), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2546), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2548), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2550), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(2881), 1, + ACTIONS(2927), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98062,60 +98001,163 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50738] = 22, - ACTIONS(2394), 1, + [50655] = 10, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2879), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2682), 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(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50717] = 9, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2682), 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(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + 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, + [50777] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, - ACTIONS(3073), 1, - anon_sym_SEMI, - STATE(998), 1, + ACTIONS(3075), 1, + anon_sym_RBRACK, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98126,60 +98168,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50824] = 22, - ACTIONS(2394), 1, + [50863] = 19, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2778), 1, + anon_sym_EQ, + ACTIONS(2885), 1, anon_sym_AMP, - ACTIONS(2560), 1, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + ACTIONS(2891), 1, anon_sym_AMP_AMP, - ACTIONS(2564), 1, + ACTIONS(2893), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + ACTIONS(2895), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2897), 1, anon_sym_CARET, - ACTIONS(2648), 1, - anon_sym_QMARK, - ACTIONS(2650), 1, - anon_sym_as, - ACTIONS(2652), 1, - anon_sym_EQ, - ACTIONS(3075), 1, - anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2877), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2883), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2887), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2901), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2879), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2899), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2776), 13, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98190,60 +98229,171 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50910] = 22, - ACTIONS(2394), 1, + [50943] = 15, + ACTIONS(2530), 1, anon_sym_LPAREN, - ACTIONS(2396), 1, + ACTIONS(2532), 1, anon_sym_LBRACK, - ACTIONS(2400), 1, + ACTIONS(2560), 1, anon_sym_DOT, - ACTIONS(2556), 1, + ACTIONS(2885), 1, anon_sym_AMP, + ACTIONS(2889), 1, + anon_sym_DOT_DOT, + ACTIONS(2895), 1, + anon_sym_PIPE, + ACTIONS(2897), 1, + anon_sym_CARET, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2682), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2879), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51015] = 12, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2889), 1, anon_sym_DOT_DOT, - ACTIONS(2562), 1, + STATE(1008), 1, + sym_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2877), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2901), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2879), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2682), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(2680), 19, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_as, anon_sym_AMP_AMP, - ACTIONS(2564), 1, anon_sym_PIPE_PIPE, - ACTIONS(2566), 1, + 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, + [51081] = 22, + ACTIONS(2530), 1, + anon_sym_LPAREN, + ACTIONS(2532), 1, + anon_sym_LBRACK, + ACTIONS(2542), 1, + anon_sym_AMP, + ACTIONS(2546), 1, + anon_sym_DOT_DOT, + ACTIONS(2548), 1, + anon_sym_AMP_AMP, + ACTIONS(2550), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2552), 1, anon_sym_PIPE, - ACTIONS(2568), 1, + ACTIONS(2554), 1, anon_sym_CARET, - ACTIONS(2648), 1, + ACTIONS(2560), 1, + anon_sym_DOT, + ACTIONS(2702), 1, anon_sym_QMARK, - ACTIONS(2650), 1, + ACTIONS(2704), 1, anon_sym_as, - ACTIONS(2652), 1, + ACTIONS(2706), 1, anon_sym_EQ, ACTIONS(3077), 1, anon_sym_SEMI, - STATE(998), 1, + STATE(1008), 1, sym_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2550), 2, + ACTIONS(2534), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2554), 2, + ACTIONS(2540), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2558), 2, + ACTIONS(2544), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2572), 2, + ACTIONS(2558), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2530), 3, + ACTIONS(2536), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2570), 4, + ACTIONS(2556), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2654), 10, + ACTIONS(2708), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -98254,45 +98404,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50996] = 15, + [51167] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - ACTIONS(943), 1, + ACTIONS(690), 1, + anon_sym_extern, + ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2837), 1, sym_metavariable, - STATE(1519), 1, - sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + ACTIONS(3079), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_fn, + STATE(1690), 1, + sym_scoped_type_identifier, + STATE(2233), 1, + sym_generic_type, + STATE(2241), 1, sym_bracketed_type, + STATE(2242), 1, + sym_generic_type_with_turbofish, + STATE(2262), 1, + sym_function_modifiers, + STATE(2323), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(93), 2, - anon_sym_true, - anon_sym_false, - STATE(979), 2, - sym_string_literal, - sym_boolean_literal, - STATE(2119), 2, - sym_meta_item, - sym__literal, - ACTIONS(2939), 3, + STATE(1482), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(2935), 17, + ACTIONS(670), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + ACTIONS(2861), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98310,47 +98462,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51067] = 17, + [51242] = 15, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, - anon_sym_extern, - ACTIONS(856), 1, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2835), 1, - sym_metavariable, - ACTIONS(3079), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(3081), 1, - anon_sym_fn, - STATE(1710), 1, - sym_scoped_type_identifier, - STATE(2230), 1, + ACTIONS(2915), 1, + sym_metavariable, + STATE(1512), 1, + sym_scoped_identifier, + STATE(2310), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2403), 1, sym_generic_type_with_turbofish, - STATE(2259), 1, - sym_function_modifiers, - STATE(2296), 1, - sym_generic_type, - STATE(2352), 1, - sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(862), 3, + ACTIONS(93), 2, + anon_sym_true, + anon_sym_false, + STATE(1052), 2, + sym_string_literal, + sym_boolean_literal, + STATE(2079), 2, + sym_meta_item, + sym__literal, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - ACTIONS(2871), 17, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98368,47 +98518,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51142] = 17, + [51313] = 17, ACTIONS(77), 1, anon_sym_LT, - ACTIONS(672), 1, + ACTIONS(690), 1, anon_sym_extern, ACTIONS(856), 1, anon_sym_COLON_COLON, - ACTIONS(2835), 1, + ACTIONS(2837), 1, sym_metavariable, ACTIONS(3083), 1, sym_identifier, ACTIONS(3085), 1, anon_sym_fn, - STATE(1656), 1, + STATE(1733), 1, sym_scoped_type_identifier, - STATE(2230), 1, + STATE(2233), 1, + sym_generic_type, + STATE(2241), 1, sym_bracketed_type, - STATE(2231), 1, + STATE(2242), 1, sym_generic_type_with_turbofish, - STATE(2296), 1, - sym_generic_type, - STATE(2352), 1, - sym_scoped_identifier, - STATE(2401), 1, + STATE(2288), 1, sym_function_modifiers, + STATE(2323), 1, + sym_scoped_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1486), 2, + STATE(1482), 2, sym_extern_modifier, aux_sym_function_modifiers_repeat1, ACTIONS(862), 3, sym_self, sym_super, sym_crate, - ACTIONS(652), 4, + ACTIONS(670), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - ACTIONS(2871), 17, + ACTIONS(2861), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98426,7 +98576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51217] = 15, + [51388] = 15, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98443,12 +98593,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98456,7 +98606,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(1868), 5, + STATE(1853), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98480,7 +98630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51286] = 14, + [51457] = 14, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98495,12 +98645,12 @@ static uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(3105), 1, anon_sym_RBRACE, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98508,7 +98658,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2068), 5, + STATE(2160), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98532,7 +98682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51352] = 14, + [51523] = 14, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98547,12 +98697,12 @@ static uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(3107), 1, anon_sym_RBRACE, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98560,7 +98710,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2068), 5, + STATE(2160), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98584,7 +98734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51418] = 13, + [51589] = 13, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98597,12 +98747,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98610,7 +98760,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2068), 5, + STATE(2401), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98634,7 +98784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51481] = 13, + [51652] = 13, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98647,12 +98797,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98660,7 +98810,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2232), 5, + STATE(2414), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98684,7 +98834,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51544] = 13, + [51715] = 13, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98697,12 +98847,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98710,7 +98860,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2267), 5, + STATE(2324), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98734,7 +98884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51607] = 13, + [51778] = 13, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98747,12 +98897,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98760,7 +98910,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2360), 5, + STATE(2189), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98784,7 +98934,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51670] = 13, + [51841] = 13, ACTIONS(77), 1, anon_sym_LT, ACTIONS(3087), 1, @@ -98797,12 +98947,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3103), 1, sym_metavariable, - STATE(1629), 1, + STATE(1652), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98810,7 +98960,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2319), 5, + STATE(2160), 5, sym__use_clause, sym_scoped_use_list, sym_use_list, @@ -98834,7 +98984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51733] = 3, + [51904] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98870,7 +99020,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [51772] = 3, + [51943] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98906,7 +99056,7 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [51811] = 3, + [51982] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -98942,31 +99092,31 @@ static uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [51850] = 11, + [52021] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2238), 1, + STATE(2300), 1, sym_meta_item, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -98984,31 +99134,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51903] = 11, + [52074] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, - sym_bracketed_type, - STATE(2336), 1, + STATE(2264), 1, sym_meta_item, + STATE(2310), 1, + sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99026,31 +99176,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [51956] = 11, + [52127] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2302), 1, - sym_meta_item, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2313), 1, + sym_meta_item, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99068,31 +99218,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52009] = 11, + [52180] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, - STATE(2409), 1, + STATE(2403), 1, + sym_generic_type_with_turbofish, + STATE(2416), 1, sym_meta_item, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99110,31 +99260,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52062] = 11, + [52233] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2191), 1, + STATE(2310), 1, + sym_bracketed_type, + STATE(2370), 1, sym_meta_item, - STATE(2226), 1, + STATE(2403), 1, sym_generic_type_with_turbofish, - STATE(2325), 1, - sym_bracketed_type, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99152,31 +99302,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52115] = 11, + [52286] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2202), 1, + STATE(2217), 1, sym_meta_item, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99194,31 +99344,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52168] = 11, + [52339] = 11, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, anon_sym_COLON_COLON, - ACTIONS(2931), 1, + ACTIONS(2905), 1, sym_identifier, - ACTIONS(2941), 1, + ACTIONS(2915), 1, sym_metavariable, - STATE(1519), 1, + STATE(1512), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2262), 1, + STATE(2203), 1, sym_meta_item, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2939), 3, + ACTIONS(2913), 3, sym_self, sym_super, sym_crate, - ACTIONS(2935), 17, + ACTIONS(2909), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -99236,7 +99386,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52221] = 10, + [52392] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, @@ -99245,12 +99395,12 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3127), 1, sym_metavariable, - STATE(2176), 1, + STATE(2156), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -99276,7 +99426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52271] = 10, + [52442] = 10, ACTIONS(77), 1, anon_sym_LT, ACTIONS(943), 1, @@ -99285,12 +99435,12 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(3135), 1, sym_metavariable, - STATE(2160), 1, + STATE(2014), 1, sym_scoped_identifier, - STATE(2226), 1, - sym_generic_type_with_turbofish, - STATE(2325), 1, + STATE(2310), 1, sym_bracketed_type, + STATE(2403), 1, + sym_generic_type_with_turbofish, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -99316,13 +99466,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [52321] = 3, - ACTIONS(2099), 1, + [52492] = 3, + ACTIONS(2111), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2101), 20, + ACTIONS(2113), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99343,13 +99493,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52351] = 3, - ACTIONS(2151), 1, + [52522] = 3, + ACTIONS(2131), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2153), 20, + ACTIONS(2133), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99370,7 +99520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52381] = 10, + [52552] = 10, ACTIONS(3139), 1, anon_sym_LPAREN, ACTIONS(3141), 1, @@ -99381,7 +99531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3151), 1, anon_sym_AT, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, @@ -99402,7 +99552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [52423] = 9, + [52594] = 9, ACTIONS(2304), 1, anon_sym_COLON, ACTIONS(3149), 1, @@ -99413,9 +99563,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -99433,16 +99583,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52463] = 4, - ACTIONS(2338), 1, + [52634] = 4, + ACTIONS(2362), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2342), 2, + ACTIONS(2366), 2, anon_sym_BANG, anon_sym_COLON_COLON, - ACTIONS(2336), 15, + ACTIONS(2360), 15, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99458,17 +99608,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52492] = 4, + [52663] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 2, + ACTIONS(2348), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2340), 2, + ACTIONS(2352), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2342), 14, + ACTIONS(2354), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99483,42 +99633,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52521] = 4, - ACTIONS(2358), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2362), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2356), 15, - 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_LT2, - anon_sym_PIPE, - [52550] = 4, + [52692] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 2, + ACTIONS(2340), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2360), 2, + ACTIONS(2344), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2362), 14, + ACTIONS(2346), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99533,32 +99658,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52579] = 4, - ACTIONS(2330), 1, + [52721] = 8, + ACTIONS(2318), 1, anon_sym_COLON, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3157), 1, + anon_sym_COLON_COLON, + STATE(1266), 1, + sym_type_arguments, + STATE(1286), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2334), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - ACTIONS(2328), 15, + ACTIONS(2316), 12, 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_LT2, anon_sym_PIPE, - [52608] = 4, + [52758] = 4, ACTIONS(2350), 1, anon_sym_COLON, ACTIONS(3), 2, @@ -99583,17 +99712,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52637] = 4, + [52787] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 2, + ACTIONS(2320), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(2352), 2, + ACTIONS(2324), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2354), 14, + ACTIONS(2326), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99608,33 +99737,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [52666] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2328), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(2332), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2334), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [52695] = 8, - ACTIONS(2318), 1, + [52816] = 8, + ACTIONS(2314), 1, anon_sym_COLON, ACTIONS(3149), 1, anon_sym_LT2, @@ -99642,14 +99746,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3157), 1, anon_sym_COLON_COLON, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2316), 12, + ACTIONS(2312), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99662,62 +99766,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52732] = 8, - ACTIONS(2314), 1, - anon_sym_COLON, - ACTIONS(3149), 1, + [52853] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2360), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3153), 1, + ACTIONS(2364), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2366), 14, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(3157), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_BANG, + anon_sym_COMMA, anon_sym_COLON_COLON, - STATE(1262), 1, - sym_type_arguments, - STATE(1293), 1, - sym_parameters, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [52882] = 4, + ACTIONS(2322), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2312), 12, + ACTIONS(2326), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2320), 15, 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_PIPE, - [52769] = 6, - ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1267), 1, - sym_type_arguments, - STATE(1292), 1, - sym_parameters, + anon_sym_PIPE, + [52911] = 4, + ACTIONS(2342), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 13, + ACTIONS(2346), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + ACTIONS(2340), 15, 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_GT, + anon_sym_LT2, anon_sym_PIPE, - [52801] = 17, + [52940] = 17, ACTIONS(3161), 1, anon_sym_const, ACTIONS(3163), 1, @@ -99742,11 +99866,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(3183), 1, anon_sym_extern, - STATE(1411), 1, + STATE(1415), 1, sym_extern_modifier, - STATE(1486), 1, + STATE(1482), 1, aux_sym_function_modifiers_repeat1, - STATE(2404), 1, + STATE(2330), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, @@ -99754,19 +99878,71 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3159), 2, anon_sym_async, anon_sym_default, - [52855] = 6, + [52994] = 6, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2336), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [53026] = 6, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2356), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [53058] = 6, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 13, + ACTIONS(2328), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99780,7 +99956,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [52887] = 17, + [53090] = 17, ACTIONS(3185), 1, anon_sym_const, ACTIONS(3187), 1, @@ -99805,11 +99981,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, ACTIONS(3207), 1, anon_sym_extern, - STATE(1432), 1, + STATE(1428), 1, sym_extern_modifier, - STATE(1486), 1, + STATE(1482), 1, aux_sym_function_modifiers_repeat1, - STATE(2196), 1, + STATE(2407), 1, sym_function_modifiers, ACTIONS(3), 2, sym_block_comment, @@ -99817,37 +99993,33 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3159), 2, anon_sym_async, anon_sym_default, - [52941] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, + [53144] = 3, + ACTIONS(3209), 1, anon_sym_LPAREN, - STATE(1267), 1, - sym_type_arguments, - STATE(1292), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [52973] = 2, + ACTIONS(3011), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [53169] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 16, + ACTIONS(2320), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99864,13 +100036,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT2, anon_sym_PIPE, - [52996] = 3, - ACTIONS(3209), 1, - anon_sym_LPAREN, + [53192] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3025), 15, + ACTIONS(3063), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -99886,13 +100056,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53021] = 3, - ACTIONS(2444), 1, + [53214] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3033), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [53236] = 3, + ACTIONS(2472), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2442), 14, + ACTIONS(2470), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -99907,56 +100097,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53045] = 3, - ACTIONS(2458), 1, - anon_sym_COLON, + [53260] = 13, + ACTIONS(3141), 1, + anon_sym_LBRACE, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3151), 1, + anon_sym_AT, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3211), 1, + anon_sym_LPAREN, + ACTIONS(3213), 1, + anon_sym_RBRACK, + ACTIONS(3216), 1, + anon_sym_COLON_COLON, + STATE(1266), 1, + sym_type_arguments, + STATE(1286), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2456), 14, + ACTIONS(2300), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3137), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_COLON_COLON, anon_sym_PIPE, - [53069] = 3, - ACTIONS(2448), 1, - anon_sym_COLON, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53304] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2446), 14, + ACTIONS(2364), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(2366), 13, anon_sym_SEMI, + anon_sym_LPAREN, 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_BANG, anon_sym_COMMA, - anon_sym_GT, anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [53093] = 3, + [53328] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2332), 2, + ACTIONS(2352), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2334), 13, + ACTIONS(2354), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99970,34 +100170,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [53117] = 2, + [53352] = 13, + ACTIONS(3137), 1, + anon_sym_PIPE, + ACTIONS(3141), 1, + anon_sym_LBRACE, + ACTIONS(3143), 1, + anon_sym_COLON, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3151), 1, + anon_sym_AT, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3218), 1, + anon_sym_LPAREN, + ACTIONS(3220), 1, + anon_sym_COLON_COLON, + STATE(1266), 1, + sym_type_arguments, + STATE(1286), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2300), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [53396] = 6, + ACTIONS(3139), 1, + anon_sym_LPAREN, + ACTIONS(3222), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2686), 15, + ACTIONS(3143), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3137), 9, 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, - sym_mutable_specifier, + anon_sym_in, anon_sym_PIPE, - sym_self, - [53139] = 3, + [53426] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2340), 2, + ACTIONS(2344), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(2342), 13, + ACTIONS(2346), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100011,13 +100246,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_in, anon_sym_PIPE, - [53163] = 3, - ACTIONS(2466), 1, + [53450] = 3, + ACTIONS(2468), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2464), 14, + ACTIONS(2466), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100032,56 +100267,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COLON_COLON, anon_sym_PIPE, - [53187] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3211), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3143), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [53217] = 3, - ACTIONS(2518), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2516), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + [53474] = 3, + ACTIONS(3224), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - [53241] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3065), 15, + ACTIONS(3015), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100096,50 +100288,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [53263] = 3, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + [53498] = 3, + ACTIONS(2416), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3027), 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, - [53287] = 3, - ACTIONS(2528), 1, + ACTIONS(2414), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3027), 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, - [53311] = 13, + anon_sym_PIPE, + [53522] = 14, + ACTIONS(2300), 1, + anon_sym_PLUS, ACTIONS(3137), 1, anon_sym_PIPE, ACTIONS(3141), 1, @@ -100152,13 +100324,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(3155), 1, anon_sym_BANG, - ACTIONS(3215), 1, + ACTIONS(3226), 1, anon_sym_LPAREN, - ACTIONS(3217), 1, + ACTIONS(3228), 1, anon_sym_COLON_COLON, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -100166,47 +100338,37 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3147), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2300), 3, + ACTIONS(3213), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [53355] = 14, - ACTIONS(2300), 1, - anon_sym_PLUS, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3143), 1, + [53568] = 3, + ACTIONS(2480), 1, anon_sym_COLON, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3219), 1, - anon_sym_LPAREN, - ACTIONS(3224), 1, - anon_sym_COLON_COLON, - STATE(1262), 1, - sym_type_arguments, - STATE(1293), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3221), 2, + ACTIONS(2478), 14, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - [53401] = 2, + anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [53592] = 3, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3035), 15, + ACTIONS(3015), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100221,64 +100383,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [53423] = 13, - ACTIONS(3141), 1, - anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3221), 1, - anon_sym_RBRACK, - ACTIONS(3226), 1, - anon_sym_LPAREN, - ACTIONS(3228), 1, - anon_sym_COLON_COLON, - STATE(1262), 1, - sym_type_arguments, - STATE(1293), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2300), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3137), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53467] = 3, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2360), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2362), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_if, - anon_sym_BANG, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_in, - anon_sym_PIPE, - [53491] = 2, + [53616] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3069), 15, + ACTIONS(3067), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -100294,84 +100403,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [53513] = 4, - ACTIONS(2366), 1, - anon_sym_COLON, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, + [53638] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 12, + ACTIONS(2654), 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_GT, + sym_mutable_specifier, anon_sym_PIPE, - [53538] = 4, - ACTIONS(3234), 1, - anon_sym_pat, - STATE(511), 1, - sym_fragment_specifier, + sym_self, + [53660] = 3, + ACTIONS(2500), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3232), 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, - [53563] = 14, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3238), 1, + ACTIONS(2498), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_EQ, - ACTIONS(3240), 1, anon_sym_COMMA, - ACTIONS(3242), 1, anon_sym_GT, - STATE(1262), 1, - sym_type_arguments, - STATE(1293), 1, - sym_parameters, - STATE(1802), 1, - sym_trait_bounds, - STATE(1804), 1, - aux_sym_type_parameters_repeat1, + anon_sym_COLON_COLON, + anon_sym_PIPE, + [53684] = 4, + ACTIONS(2358), 1, + anon_sym_COLON, + ACTIONS(3230), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 2, + ACTIONS(2356), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_PLUS, anon_sym_as, - [53608] = 2, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + [53709] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2460), 14, + ACTIONS(2398), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100386,13 +100484,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53629] = 3, - ACTIONS(3244), 1, + [53730] = 3, + ACTIONS(2135), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2137), 13, + 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_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [53753] = 3, + ACTIONS(3232), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2474), 13, + ACTIONS(2386), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100406,13 +100524,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53652] = 3, - ACTIONS(3246), 1, + [53776] = 3, + ACTIONS(3234), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2408), 13, + ACTIONS(2436), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100426,11 +100544,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53675] = 2, + [53799] = 3, + ACTIONS(3236), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2434), 14, + ACTIONS(2458), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100442,22 +100562,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53696] = 3, - ACTIONS(3248), 1, - anon_sym_DASH_GT, + [53822] = 4, + ACTIONS(2358), 1, + anon_sym_COLON, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2486), 13, + ACTIONS(2356), 12, 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, @@ -100465,52 +100585,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53719] = 2, + [53847] = 4, + ACTIONS(2358), 1, + anon_sym_COLON, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2512), 14, + ACTIONS(2356), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53740] = 5, - ACTIONS(3254), 1, + [53872] = 4, + ACTIONS(2338), 1, + anon_sym_COLON, + ACTIONS(3238), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3252), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3256), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3250), 9, + ACTIONS(2336), 12, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_RBRACK, - anon_sym_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [53767] = 2, + [53897] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2508), 14, + ACTIONS(2474), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100525,34 +100646,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53788] = 4, - ACTIONS(2366), 1, - anon_sym_COLON, - ACTIONS(3029), 1, + [53918] = 14, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3157), 1, anon_sym_COLON_COLON, + ACTIONS(3240), 1, + anon_sym_COLON, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_GT, + STATE(1266), 1, + sym_type_arguments, + STATE(1286), 1, + sym_parameters, + STATE(1947), 1, + sym_trait_bounds, + STATE(1964), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 12, + ACTIONS(2300), 2, + anon_sym_PLUS, + anon_sym_as, + [53963] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2488), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53813] = 3, - ACTIONS(3258), 1, + [53984] = 3, + ACTIONS(3248), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2480), 13, + ACTIONS(2428), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100566,13 +100716,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53836] = 3, - ACTIONS(3260), 1, - anon_sym_DASH_GT, + [54007] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2502), 13, + ACTIONS(2402), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100584,15 +100732,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [53859] = 3, - ACTIONS(3262), 1, + [54028] = 3, + ACTIONS(3250), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2492), 13, + ACTIONS(2442), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100606,15 +100755,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53882] = 4, - ACTIONS(2326), 1, + [54051] = 4, + ACTIONS(2330), 1, anon_sym_COLON, - ACTIONS(3230), 1, + ACTIONS(3238), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 12, + ACTIONS(2328), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100627,39 +100776,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53907] = 2, + [54076] = 4, + ACTIONS(3254), 1, + anon_sym_pat, + STATE(512), 1, + sym_fragment_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2498), 14, + ACTIONS(3252), 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, + [54101] = 5, + ACTIONS(3260), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3258), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3262), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3256), 9, 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_DASH_GT, - anon_sym_GT, + anon_sym_in, anon_sym_PIPE, - [53928] = 4, - ACTIONS(2366), 1, - anon_sym_COLON, + [54128] = 3, ACTIONS(3264), 1, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 12, + ACTIONS(2422), 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, @@ -100667,13 +100839,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53953] = 3, + [54151] = 3, ACTIONS(3266), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2468), 13, + ACTIONS(2482), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100687,52 +100859,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [53976] = 4, - ACTIONS(2322), 1, - anon_sym_COLON, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, + [54174] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 12, + ACTIONS(2494), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS, anon_sym_as, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT, anon_sym_PIPE, - [54001] = 3, - ACTIONS(2119), 1, - anon_sym_EQ, + [54195] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2121), 13, + ACTIONS(2574), 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_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54024] = 2, + [54215] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2630), 13, + ACTIONS(2566), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100746,11 +100914,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54044] = 2, + [54235] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(421), 13, + ACTIONS(2562), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100764,30 +100932,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54064] = 3, - ACTIONS(3270), 1, - anon_sym_EQ, + [54255] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3268), 12, + ACTIONS(2328), 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_if, + anon_sym_PLUS, + anon_sym_as, + anon_sym_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_PIPE, - [54086] = 2, + [54275] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 13, + ACTIONS(2570), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100801,11 +100968,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54106] = 2, + [54295] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2320), 13, + ACTIONS(2610), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100819,30 +100986,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54126] = 3, + [54315] = 3, + ACTIONS(3270), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2352), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(2354), 11, + ACTIONS(3268), 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_BANG, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, anon_sym_in, + anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54148] = 2, + [54337] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2664), 13, + ACTIONS(578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100856,11 +101023,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54168] = 2, + [54357] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2520), 13, + ACTIONS(2676), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100874,11 +101041,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54188] = 2, + [54377] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 13, + ACTIONS(2646), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100892,11 +101059,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54208] = 2, + [54397] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2638), 13, + ACTIONS(2614), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100910,11 +101077,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54228] = 2, + [54417] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2690), 13, + ACTIONS(2578), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100928,11 +101095,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54248] = 2, + [54437] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2524), 13, + ACTIONS(407), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100946,11 +101113,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54268] = 2, + [54457] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2784), 13, + ACTIONS(566), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -100964,47 +101131,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54288] = 2, + [54477] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2752), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(2324), 2, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [54308] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2634), 13, + ACTIONS(2326), 11, 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_BANG, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_in, anon_sym_PIPE, - [54328] = 2, + [54499] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2768), 13, + ACTIONS(2650), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101018,11 +101168,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54348] = 2, + [54519] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2626), 13, + ACTIONS(2634), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101036,11 +101186,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54368] = 2, + [54539] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2324), 13, + ACTIONS(2516), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101054,11 +101204,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54388] = 2, + [54559] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2740), 13, + ACTIONS(2524), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101072,11 +101222,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54408] = 2, + [54579] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2744), 13, + ACTIONS(2336), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101090,11 +101240,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54428] = 2, + [54599] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2540), 13, + ACTIONS(2524), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101108,11 +101258,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54448] = 2, + [54619] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2732), 13, + ACTIONS(2602), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101126,11 +101276,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54468] = 2, + [54639] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2574), 13, + ACTIONS(2606), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101144,11 +101294,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54488] = 2, + [54659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2728), 13, + ACTIONS(2512), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101162,7 +101312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54508] = 4, + [54679] = 4, ACTIONS(3143), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101182,29 +101332,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54532] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(560), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_as, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - [54552] = 2, + [54703] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(399), 13, + ACTIONS(2582), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101218,11 +101350,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54572] = 2, + [54723] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2642), 13, + ACTIONS(2508), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101236,7 +101368,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54592] = 3, + [54743] = 3, ACTIONS(3274), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101255,11 +101387,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54614] = 2, + [54765] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 13, + ACTIONS(2520), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACE, @@ -101273,54 +101405,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - [54634] = 4, - ACTIONS(3280), 1, - anon_sym_COLON_COLON, + [54785] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3276), 9, + ACTIONS(2356), 13, anon_sym_SEMI, 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_where, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, + anon_sym_GT, anon_sym_PIPE, - [54657] = 4, + [54805] = 10, + ACTIONS(3139), 1, + anon_sym_LPAREN, + ACTIONS(3141), 1, + anon_sym_LBRACE, + ACTIONS(3145), 1, + anon_sym_COLON_COLON, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3151), 1, + anon_sym_AT, + ACTIONS(3276), 1, + anon_sym_BANG, + STATE(1266), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3282), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - ACTIONS(2336), 4, - anon_sym_SEMI, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3137), 3, + anon_sym_EQ_GT, + anon_sym_if, + anon_sym_PIPE, + [54840] = 5, + ACTIONS(2352), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2348), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2342), 6, + ACTIONS(3278), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2354), 5, anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [54865] = 5, + ACTIONS(2324), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2320), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3281), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + ACTIONS(2326), 5, + anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54680] = 4, - ACTIONS(3213), 1, + [54890] = 4, + ACTIONS(3288), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 2, + ACTIONS(3286), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3276), 9, + ACTIONS(3284), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101330,35 +101507,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54703] = 4, + [54913] = 4, + ACTIONS(3294), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3285), 2, + ACTIONS(3292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3290), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [54936] = 5, + ACTIONS(2344), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2340), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3296), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2346), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [54961] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3299), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2348), 4, + ACTIONS(2360), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2354), 6, + ACTIONS(2366), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54726] = 4, - ACTIONS(3288), 1, + [54984] = 4, + ACTIONS(3224), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3278), 2, + ACTIONS(3292), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3276), 9, + ACTIONS(3290), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101368,36 +101584,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54749] = 5, - ACTIONS(2360), 1, - anon_sym_COLON, - ACTIONS(3290), 1, - anon_sym_LPAREN, + [55007] = 4, + ACTIONS(3302), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 5, + ACTIONS(3292), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3290), 9, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_if, anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2362), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_in, anon_sym_PIPE, - [54774] = 4, - ACTIONS(3297), 1, + [55030] = 4, + ACTIONS(3288), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3295), 2, + ACTIONS(3306), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3293), 9, + ACTIONS(3304), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101407,156 +101622,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [54797] = 4, + [55053] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3290), 2, + ACTIONS(3278), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2356), 4, + ACTIONS(2348), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2362), 6, + ACTIONS(2354), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54820] = 5, - ACTIONS(2352), 1, + [55076] = 5, + ACTIONS(2364), 1, anon_sym_COLON, - ACTIONS(3285), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2348), 5, - anon_sym_RPAREN, + ACTIONS(2360), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2354), 5, + ACTIONS(3299), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2366), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54845] = 4, + [55101] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3299), 2, + ACTIONS(3281), 2, anon_sym_LPAREN, anon_sym_RBRACK, - ACTIONS(2328), 4, + ACTIONS(2320), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2334), 6, + ACTIONS(2326), 6, anon_sym_BANG, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54868] = 10, - ACTIONS(3139), 1, + [55124] = 4, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3296), 2, anon_sym_LPAREN, - ACTIONS(3141), 1, + anon_sym_RBRACK, + ACTIONS(2340), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3145), 1, - anon_sym_COLON_COLON, - ACTIONS(3149), 1, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3151), 1, - anon_sym_AT, - ACTIONS(3302), 1, + ACTIONS(2346), 6, anon_sym_BANG, - STATE(1262), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PIPE, - [54903] = 5, - ACTIONS(2340), 1, + [55147] = 5, + ACTIONS(2344), 1, anon_sym_COLON, - ACTIONS(3282), 1, + ACTIONS(3296), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2336), 5, + ACTIONS(2340), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(2342), 5, + ACTIONS(2346), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54928] = 5, - ACTIONS(2332), 1, + [55172] = 5, + ACTIONS(2324), 1, anon_sym_COLON, + ACTIONS(3281), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2328), 3, + ACTIONS(2320), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3299), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2334), 5, + anon_sym_LT2, + ACTIONS(2326), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54953] = 5, - ACTIONS(2360), 1, + [55197] = 5, + ACTIONS(2352), 1, anon_sym_COLON, + ACTIONS(3278), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2356), 3, + ACTIONS(2348), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3290), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2362), 5, + anon_sym_LT2, + ACTIONS(2354), 5, anon_sym_BANG, anon_sym_COLON_COLON, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_PIPE, - [54978] = 3, - ACTIONS(393), 1, + [55222] = 3, + ACTIONS(397), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(391), 11, + ACTIONS(395), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101568,13 +101777,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [54999] = 3, - ACTIONS(397), 1, + [55243] = 5, + ACTIONS(2364), 1, + anon_sym_COLON, + ACTIONS(3299), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2360), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(2366), 5, + anon_sym_BANG, + anon_sym_COLON_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE, + [55268] = 3, + ACTIONS(389), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(395), 11, + ACTIONS(387), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101586,35 +101815,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55020] = 4, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, + [55289] = 3, + ACTIONS(393), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(3304), 9, + ACTIONS(391), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_EQ_GT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_if, anon_sym_COMMA, + anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55043] = 4, - ACTIONS(3213), 1, + [55310] = 4, + ACTIONS(3302), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 2, + ACTIONS(3310), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3304), 9, + ACTIONS(3308), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101624,36 +101852,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55066] = 5, - ACTIONS(2352), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2348), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3285), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2354), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55091] = 4, - ACTIONS(3280), 1, + [55333] = 4, + ACTIONS(3224), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3306), 2, + ACTIONS(3310), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(3304), 9, + ACTIONS(3308), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101663,48 +101871,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55114] = 5, - ACTIONS(2340), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2336), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3282), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2342), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55139] = 5, - ACTIONS(2332), 1, - anon_sym_COLON, - ACTIONS(3299), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2328), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(2334), 5, - anon_sym_BANG, - anon_sym_COLON_COLON, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE, - [55164] = 4, - ACTIONS(3297), 1, + [55356] = 4, + ACTIONS(3294), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -101722,13 +101890,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55187] = 3, - ACTIONS(389), 1, + [55379] = 3, + ACTIONS(3314), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(387), 11, + ACTIONS(3312), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101737,29 +101905,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_if, anon_sym_COMMA, - anon_sym_GT, anon_sym_in, anon_sym_PIPE, - [55208] = 5, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(3314), 1, - sym_crate, - STATE(1483), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3312), 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, - [55232] = 3, + [55399] = 3, ACTIONS(3318), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101776,13 +101924,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55252] = 3, - ACTIONS(3322), 1, + [55419] = 3, + ACTIONS(3310), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 10, + ACTIONS(3308), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101793,7 +101941,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55272] = 3, + [55439] = 5, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + ACTIONS(3322), 1, + sym_crate, + STATE(1450), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 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, + [55463] = 3, ACTIONS(3326), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101810,17 +101977,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55292] = 5, - ACTIONS(694), 1, + [55483] = 5, + ACTIONS(712), 1, aux_sym_string_literal_token1, ACTIONS(3328), 1, sym_crate, - STATE(1483), 1, + STATE(1450), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3312), 8, + ACTIONS(3320), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -101829,7 +101996,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55316] = 3, + [55507] = 3, ACTIONS(3332), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101846,7 +102013,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55336] = 3, + [55527] = 3, ACTIONS(3336), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101863,7 +102030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55356] = 3, + [55547] = 3, ACTIONS(3340), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101880,7 +102047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55376] = 3, + [55567] = 3, ACTIONS(3344), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101897,7 +102064,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55396] = 3, + [55587] = 3, ACTIONS(3348), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101914,7 +102081,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55416] = 3, + [55607] = 3, ACTIONS(3352), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -101931,49 +102098,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55436] = 5, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - ACTIONS(3354), 1, - sym_crate, - STATE(1483), 1, - sym_string_literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3312), 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, - [55460] = 3, - ACTIONS(574), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(572), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [55480] = 3, - ACTIONS(3358), 1, + [55627] = 3, + ACTIONS(3356), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3356), 10, + ACTIONS(3354), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -101984,7 +102115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55500] = 3, + [55647] = 3, ACTIONS(3143), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -102001,30 +102132,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55520] = 3, - ACTIONS(3362), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3360), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_if, - anon_sym_COMMA, - anon_sym_in, - anon_sym_PIPE, - [55540] = 3, - ACTIONS(3366), 1, + [55667] = 3, + ACTIONS(3360), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3364), 10, + ACTIONS(3358), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102035,13 +102149,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55560] = 3, - ACTIONS(3370), 1, + [55687] = 3, + ACTIONS(3364), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3368), 10, + ACTIONS(3362), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102052,13 +102166,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55580] = 3, - ACTIONS(3374), 1, + [55707] = 3, + ACTIONS(3368), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3372), 10, + ACTIONS(3366), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102069,13 +102183,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55600] = 3, - ACTIONS(3378), 1, + [55727] = 3, + ACTIONS(3372), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3376), 10, + ACTIONS(3370), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102086,13 +102200,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55620] = 3, - ACTIONS(3382), 1, + [55747] = 3, + ACTIONS(3376), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3380), 10, + ACTIONS(3374), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102103,13 +102217,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55640] = 3, - ACTIONS(3386), 1, + [55767] = 3, + ACTIONS(3380), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3384), 10, + ACTIONS(3378), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102120,13 +102234,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55660] = 3, - ACTIONS(3278), 1, + [55787] = 3, + ACTIONS(3384), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3276), 10, + ACTIONS(3382), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102137,13 +102251,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55680] = 3, - ACTIONS(3390), 1, + [55807] = 3, + ACTIONS(3388), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3388), 10, + ACTIONS(3386), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102154,13 +102268,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55700] = 3, - ACTIONS(3394), 1, + [55827] = 3, + ACTIONS(3392), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3392), 10, + ACTIONS(3390), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102171,13 +102285,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55720] = 3, - ACTIONS(3306), 1, + [55847] = 3, + ACTIONS(3396), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3304), 10, + ACTIONS(3394), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102188,13 +102302,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55740] = 3, + [55867] = 5, + ACTIONS(712), 1, + aux_sym_string_literal_token1, ACTIONS(3398), 1, + sym_crate, + STATE(1450), 1, + sym_string_literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3320), 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, + [55891] = 3, + ACTIONS(3402), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3396), 10, + ACTIONS(3400), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102205,13 +102338,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55760] = 3, - ACTIONS(3402), 1, + [55911] = 3, + ACTIONS(3406), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3400), 10, + ACTIONS(3404), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102222,13 +102355,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55780] = 3, - ACTIONS(3406), 1, + [55931] = 3, + ACTIONS(3410), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3404), 10, + ACTIONS(3408), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102239,17 +102372,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55800] = 5, - ACTIONS(694), 1, + [55951] = 5, + ACTIONS(712), 1, aux_sym_string_literal_token1, - ACTIONS(3408), 1, + ACTIONS(3412), 1, sym_crate, - STATE(1483), 1, + STATE(1450), 1, sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3312), 8, + ACTIONS(3320), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -102258,13 +102391,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [55824] = 3, - ACTIONS(3412), 1, + [55975] = 3, + ACTIONS(3416), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3410), 10, + ACTIONS(3414), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102275,13 +102408,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55844] = 3, - ACTIONS(3416), 1, + [55995] = 3, + ACTIONS(3420), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3414), 10, + ACTIONS(3418), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102292,13 +102425,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55864] = 3, - ACTIONS(3420), 1, + [56015] = 3, + ACTIONS(3424), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 10, + ACTIONS(3422), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102309,13 +102442,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55884] = 3, - ACTIONS(3424), 1, + [56035] = 3, + ACTIONS(3292), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3422), 10, + ACTIONS(3290), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, @@ -102326,7 +102459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55904] = 3, + [56055] = 3, ACTIONS(3428), 1, anon_sym_EQ, ACTIONS(3), 2, @@ -102343,68 +102476,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_in, anon_sym_PIPE, - [55924] = 9, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - ACTIONS(3430), 1, - anon_sym_for, - STATE(1262), 1, - sym_type_arguments, - STATE(1293), 1, - sym_parameters, + [56075] = 3, + ACTIONS(594), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2300), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [55955] = 7, + ACTIONS(592), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_if, + anon_sym_COMMA, + anon_sym_in, + anon_sym_PIPE, + [56095] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3432), 1, + ACTIONS(3430), 1, anon_sym_LBRACE, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 5, + ACTIONS(2356), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [55982] = 6, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3197), 1, - anon_sym_trait, - ACTIONS(3434), 1, - anon_sym_impl, - STATE(67), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56007] = 9, + [56122] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102413,11 +102522,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3436), 1, + ACTIONS(3432), 1, anon_sym_EQ, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102426,30 +102535,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_COMMA, anon_sym_GT, - [56038] = 10, + [56153] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3440), 1, + ACTIONS(3436), 1, anon_sym_RBRACE, - ACTIONS(3442), 1, + ACTIONS(3438), 1, anon_sym_COMMA, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - STATE(1831), 1, - sym_field_declaration, - STATE(2207), 1, + STATE(1887), 1, + sym_enum_variant, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1470), 2, + STATE(1474), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56071] = 9, + [56186] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102458,11 +102567,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3446), 1, + ACTIONS(3442), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102471,7 +102580,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56102] = 9, + [56217] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102480,11 +102589,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3448), 1, + ACTIONS(3444), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102493,74 +102602,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56133] = 8, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3450), 1, - sym_identifier, - ACTIONS(3452), 1, - anon_sym_RBRACE, - ACTIONS(3454), 1, - anon_sym_COMMA, - ACTIONS(3456), 1, - anon_sym_DOT_DOT, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1676), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(1807), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [56162] = 10, + [56248] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3458), 1, + ACTIONS(3446), 1, sym_identifier, - ACTIONS(3460), 1, + ACTIONS(3448), 1, anon_sym_RBRACE, - ACTIONS(3462), 1, + ACTIONS(3450), 1, anon_sym_COMMA, - STATE(1763), 1, - sym_enum_variant, - STATE(2367), 1, + STATE(1846), 1, + sym_field_declaration, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1450), 2, + STATE(1459), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56195] = 10, - ACTIONS(53), 1, - anon_sym_pub, + [56281] = 9, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3157), 1, + anon_sym_COLON_COLON, + ACTIONS(3452), 1, + anon_sym_for, + STATE(1266), 1, + sym_type_arguments, + STATE(1286), 1, + sym_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2300), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [56312] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1858), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3454), 2, + anon_sym_true, + anon_sym_false, + STATE(1052), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [56337] = 6, + ACTIONS(91), 1, + aux_sym_string_literal_token1, + STATE(1862), 1, + sym__literal, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3454), 2, + anon_sym_true, + anon_sym_false, + STATE(1052), 2, + sym_string_literal, + sym_boolean_literal, + ACTIONS(89), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + [56362] = 8, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, + ACTIONS(3456), 1, sym_identifier, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3464), 1, + ACTIONS(3458), 1, anon_sym_RBRACE, - ACTIONS(3466), 1, + ACTIONS(3460), 1, anon_sym_COMMA, - STATE(1977), 1, - sym_field_declaration, - STATE(2207), 1, - sym_visibility_modifier, + ACTIONS(3462), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1472), 2, + STATE(1671), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56228] = 9, + STATE(1948), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [56391] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102569,11 +102715,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3468), 1, + ACTIONS(3464), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102582,7 +102728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56259] = 9, + [56422] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102591,11 +102737,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3470), 1, + ACTIONS(3466), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102604,7 +102750,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56290] = 9, + [56453] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102613,11 +102759,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3472), 1, + ACTIONS(3468), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102626,26 +102772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56321] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1912), 1, - sym__literal, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3474), 2, - anon_sym_true, - anon_sym_false, - STATE(979), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [56346] = 9, + [56484] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102654,11 +102781,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3476), 1, + ACTIONS(3470), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102667,30 +102794,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56377] = 10, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, - sym_identifier, - ACTIONS(3478), 1, - anon_sym_RBRACE, - ACTIONS(3480), 1, - anon_sym_COMMA, - STATE(1940), 1, - sym_enum_variant, - STATE(2367), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1478), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56410] = 9, + [56515] = 9, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, @@ -102699,11 +102803,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3482), 1, + ACTIONS(3472), 1, anon_sym_for, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1293), 1, + STATE(1286), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, @@ -102712,167 +102816,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [56441] = 6, - ACTIONS(91), 1, - aux_sym_string_literal_token1, - STATE(1913), 1, - sym__literal, + [56546] = 6, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3173), 1, + anon_sym_trait, + ACTIONS(3474), 1, + anon_sym_impl, + STATE(64), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3474), 2, - anon_sym_true, - anon_sym_false, - STATE(979), 2, - sym_string_literal, - sym_boolean_literal, - ACTIONS(89), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - [56466] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, + ACTIONS(2396), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3488), 1, - anon_sym_GT, - ACTIONS(3490), 1, - sym_metavariable, - STATE(1661), 1, - sym_lifetime, - STATE(1965), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56496] = 9, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56571] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3458), 1, + ACTIONS(3446), 1, sym_identifier, - ACTIONS(3492), 1, + ACTIONS(3476), 1, anon_sym_RBRACE, - STATE(2149), 1, - sym_enum_variant, - STATE(2367), 1, + ACTIONS(3478), 1, + anon_sym_COMMA, + STATE(1980), 1, + sym_field_declaration, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1481), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56526] = 9, + [56604] = 10, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3494), 1, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3480), 1, anon_sym_RBRACE, - STATE(2149), 1, + ACTIONS(3482), 1, + anon_sym_COMMA, + STATE(1943), 1, sym_enum_variant, - STATE(2367), 1, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1477), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56556] = 9, + [56637] = 9, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(3484), 1, sym_identifier, ACTIONS(3486), 1, anon_sym_const, + ACTIONS(3488), 1, + anon_sym_GT, ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3496), 1, - anon_sym_GT, - STATE(1678), 1, + STATE(1681), 1, sym_lifetime, - STATE(1965), 1, + STATE(1910), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [56586] = 5, - ACTIONS(3498), 1, - anon_sym_SEMI, - ACTIONS(3500), 1, - anon_sym_LBRACE, - STATE(948), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [56608] = 9, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3502), 1, - anon_sym_RBRACE, - STATE(2138), 1, - sym_field_declaration, - STATE(2207), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1452), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [56638] = 7, + [56667] = 7, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3450), 1, - sym_identifier, ACTIONS(3456), 1, + sym_identifier, + ACTIONS(3462), 1, anon_sym_DOT_DOT, - ACTIONS(3504), 1, + ACTIONS(3492), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1676), 2, + STATE(1671), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2095), 3, + STATE(2177), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [56664] = 9, + [56693] = 9, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(3484), 1, @@ -102881,40 +102930,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3506), 1, + ACTIONS(3494), 1, anon_sym_GT, - STATE(1661), 1, + STATE(1681), 1, sym_lifetime, - STATE(1965), 1, + STATE(1910), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [56694] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, + [56723] = 7, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3456), 1, sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3508), 1, - anon_sym_GT, - STATE(1661), 1, - sym_lifetime, - STATE(1965), 1, - sym_constrained_type_parameter, + ACTIONS(3462), 1, + anon_sym_DOT_DOT, + ACTIONS(3496), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56724] = 9, + STATE(1671), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2177), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [56749] = 9, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(3484), 1, @@ -102923,99 +102970,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3510), 1, + ACTIONS(3498), 1, anon_sym_GT, - STATE(1661), 1, + STATE(1681), 1, sym_lifetime, - STATE(1965), 1, + STATE(1910), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [56754] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3512), 1, - anon_sym_GT, - STATE(1661), 1, - sym_lifetime, - STATE(1965), 1, - sym_constrained_type_parameter, + [56779] = 5, + ACTIONS(3500), 1, + anon_sym_SEMI, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(451), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56784] = 9, + ACTIONS(2396), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [56801] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3458), 1, + ACTIONS(3446), 1, sym_identifier, - ACTIONS(3514), 1, + ACTIONS(3504), 1, anon_sym_RBRACE, STATE(2149), 1, - sym_enum_variant, - STATE(2367), 1, + sym_field_declaration, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56814] = 9, + [56831] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3516), 1, + ACTIONS(3506), 1, anon_sym_RBRACE, - STATE(2138), 1, - sym_field_declaration, - STATE(2207), 1, + STATE(2035), 1, + sym_enum_variant, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, + STATE(1480), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [56844] = 5, - ACTIONS(3500), 1, + [56861] = 5, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3518), 1, + ACTIONS(3508), 1, anon_sym_SEMI, - STATE(786), 1, + STATE(261), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2396), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [56866] = 7, + [56883] = 10, + ACTIONS(3510), 1, + anon_sym_SEMI, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3514), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(297), 1, + sym_field_declaration_list, + STATE(1494), 1, + sym_type_parameters, + STATE(1803), 1, + sym_ordered_field_declaration_list, + STATE(2078), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [56915] = 7, ACTIONS(3139), 1, anon_sym_LPAREN, ACTIONS(3143), 1, @@ -103034,192 +103099,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_PIPE, - [56892] = 10, + [56941] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3446), 1, + sym_identifier, ACTIONS(3522), 1, - anon_sym_SEMI, - ACTIONS(3524), 1, - anon_sym_LPAREN, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(357), 1, - sym_field_declaration_list, - STATE(1494), 1, - sym_type_parameters, - STATE(1944), 1, - sym_ordered_field_declaration_list, - STATE(2040), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [56924] = 10, - ACTIONS(3524), 1, - anon_sym_LPAREN, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3532), 1, - anon_sym_SEMI, - ACTIONS(3534), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_field_declaration_list, - STATE(1497), 1, - sym_type_parameters, - STATE(1909), 1, - sym_ordered_field_declaration_list, - STATE(2097), 1, - sym_where_clause, + anon_sym_RBRACE, + STATE(2149), 1, + sym_field_declaration, + STATE(2226), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [56956] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, + STATE(1449), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [56971] = 9, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3536), 1, - anon_sym_GT, - STATE(1661), 1, - sym_lifetime, - STATE(1965), 1, - sym_constrained_type_parameter, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3524), 1, + anon_sym_RBRACE, + STATE(2035), 1, + sym_enum_variant, + STATE(2188), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [56986] = 9, + STATE(1480), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57001] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3538), 1, + ACTIONS(3526), 1, anon_sym_RBRACE, - STATE(2138), 1, - sym_field_declaration, - STATE(2207), 1, + STATE(2035), 1, + sym_enum_variant, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, + STATE(1480), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57016] = 5, + [57031] = 5, ACTIONS(15), 1, anon_sym_LBRACE, - ACTIONS(3540), 1, - anon_sym_move, - STATE(53), 1, + ACTIONS(3528), 1, + sym_identifier, + STATE(70), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57038] = 9, + [57053] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3542), 1, + ACTIONS(3446), 1, + sym_identifier, + ACTIONS(3532), 1, anon_sym_RBRACE, - STATE(2138), 1, + STATE(2149), 1, sym_field_declaration, - STATE(2207), 1, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57068] = 9, + [57083] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3544), 1, + ACTIONS(3534), 1, anon_sym_RBRACE, - STATE(2138), 1, - sym_field_declaration, - STATE(2207), 1, + STATE(2035), 1, + sym_enum_variant, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57098] = 7, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3450), 1, - sym_identifier, - ACTIONS(3456), 1, - anon_sym_DOT_DOT, - ACTIONS(3546), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1676), 2, + STATE(1480), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - STATE(2095), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [57124] = 9, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3484), 1, - sym_identifier, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3490), 1, - sym_metavariable, - ACTIONS(3548), 1, - anon_sym_GT, - STATE(1661), 1, - sym_lifetime, - STATE(1965), 1, - sym_constrained_type_parameter, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(2011), 2, - sym_const_parameter, - sym_optional_type_parameter, - [57154] = 9, + [57113] = 9, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(3484), 1, @@ -103228,382 +103230,351 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3490), 1, sym_metavariable, - ACTIONS(3550), 1, + ACTIONS(3536), 1, anon_sym_GT, - STATE(1661), 1, + STATE(1681), 1, sym_lifetime, - STATE(1965), 1, + STATE(1910), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [57184] = 5, - ACTIONS(3552), 1, + [57143] = 5, + ACTIONS(3538), 1, anon_sym_SEMI, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(453), 1, + STATE(783), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2396), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57206] = 9, + [57165] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3556), 1, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3542), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2035), 1, sym_enum_variant, - STATE(2367), 1, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1480), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57236] = 5, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3558), 1, - anon_sym_SEMI, - STATE(356), 1, - sym_declaration_list, + [57195] = 9, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3484), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3544), 1, + anon_sym_GT, + STATE(1701), 1, + sym_lifetime, + STATE(1910), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57258] = 10, - ACTIONS(3524), 1, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57225] = 10, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3526), 1, + ACTIONS(3514), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3560), 1, + ACTIONS(3546), 1, anon_sym_SEMI, - STATE(265), 1, + STATE(359), 1, sym_field_declaration_list, - STATE(1490), 1, + STATE(1522), 1, sym_type_parameters, - STATE(1919), 1, + STATE(1816), 1, sym_ordered_field_declaration_list, - STATE(2069), 1, + STATE(2134), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57290] = 9, + [57257] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3458), 1, + ACTIONS(3446), 1, sym_identifier, - ACTIONS(3562), 1, + ACTIONS(3548), 1, anon_sym_RBRACE, STATE(2149), 1, - sym_enum_variant, - STATE(2367), 1, + sym_field_declaration, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57320] = 9, + [57287] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, + ACTIONS(3434), 1, sym_identifier, - ACTIONS(3564), 1, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3550), 1, anon_sym_RBRACE, - STATE(2149), 1, + STATE(2035), 1, sym_enum_variant, - STATE(2367), 1, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1480), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57350] = 10, - ACTIONS(3524), 1, + [57317] = 10, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3566), 1, + ACTIONS(3552), 1, anon_sym_SEMI, - STATE(829), 1, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(812), 1, sym_field_declaration_list, - STATE(1516), 1, + STATE(1505), 1, sym_type_parameters, - STATE(1976), 1, + STATE(1912), 1, sym_ordered_field_declaration_list, - STATE(2000), 1, + STATE(2105), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57382] = 5, - ACTIONS(15), 1, - anon_sym_LBRACE, - ACTIONS(3568), 1, - sym_identifier, - STATE(65), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3570), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [57404] = 9, + [57349] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3572), 1, + ACTIONS(3446), 1, + sym_identifier, + ACTIONS(3556), 1, anon_sym_RBRACE, - STATE(2138), 1, + STATE(2149), 1, sym_field_declaration, - STATE(2207), 1, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57434] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3574), 1, - anon_sym_for, - STATE(1267), 1, - sym_type_arguments, - STATE(1292), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 3, + [57379] = 5, + ACTIONS(3540), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [57459] = 6, - ACTIONS(3576), 1, - anon_sym_RBRACK, - ACTIONS(3579), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 2, + ACTIONS(3558), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3250), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3256), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [57482] = 6, - ACTIONS(3250), 1, - anon_sym_PIPE, - ACTIONS(3252), 1, - anon_sym_COLON, - ACTIONS(3581), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3256), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2364), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [57505] = 9, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LT, - STATE(845), 1, + STATE(889), 1, sym_declaration_list, - STATE(1544), 1, - sym_type_parameters, - STATE(1677), 1, - sym_trait_bounds, - STATE(1995), 1, - sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57534] = 9, - ACTIONS(3528), 1, + ACTIONS(2396), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57401] = 10, + ACTIONS(3512), 1, + anon_sym_LPAREN, + ACTIONS(3516), 1, anon_sym_where, + ACTIONS(3518), 1, + anon_sym_LT, ACTIONS(3554), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LT, - STATE(418), 1, - sym_declaration_list, - STATE(1555), 1, + ACTIONS(3560), 1, + anon_sym_SEMI, + STATE(939), 1, + sym_field_declaration_list, + STATE(1519), 1, sym_type_parameters, - STATE(1732), 1, - sym_trait_bounds, - STATE(2126), 1, + STATE(1983), 1, + sym_ordered_field_declaration_list, + STATE(2002), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57563] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, - sym_identifier, - STATE(2075), 1, - sym_enum_variant, - STATE(2367), 1, - sym_visibility_modifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - STATE(1068), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57590] = 4, - ACTIONS(848), 1, + [57433] = 5, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(1366), 1, + ACTIONS(3562), 1, + anon_sym_move, + STATE(62), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(2396), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [57609] = 4, - ACTIONS(3589), 1, - anon_sym_PLUS, - STATE(1484), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3587), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, + [57455] = 9, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3484), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3564), 1, anon_sym_GT, - [57628] = 8, - ACTIONS(3591), 1, - anon_sym_LPAREN, - ACTIONS(3596), 1, - anon_sym_LBRACE, - ACTIONS(3599), 1, - anon_sym_LBRACK, - STATE(1449), 1, - aux_sym_macro_definition_repeat1, - STATE(2254), 1, - sym_macro_rule, - STATE(2358), 1, - sym_token_tree_pattern, + STATE(1681), 1, + sym_lifetime, + STATE(1910), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [57655] = 8, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57485] = 9, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - ACTIONS(3458), 1, + ACTIONS(3446), 1, sym_identifier, - STATE(1953), 1, - sym_enum_variant, - STATE(2367), 1, + ACTIONS(3566), 1, + anon_sym_RBRACE, + STATE(2149), 1, + sym_field_declaration, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [57682] = 6, + [57515] = 9, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3484), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3568), 1, + anon_sym_GT, + STATE(1681), 1, + sym_lifetime, + STATE(1910), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57545] = 9, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3484), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3570), 1, + anon_sym_GT, + STATE(1681), 1, + sym_lifetime, + STATE(1910), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57575] = 9, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3484), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3490), 1, + sym_metavariable, + ACTIONS(3572), 1, + anon_sym_GT, + STATE(1681), 1, + sym_lifetime, + STATE(1910), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(2108), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57605] = 6, ACTIONS(3139), 1, anon_sym_LPAREN, - ACTIONS(3211), 1, + ACTIONS(3222), 1, anon_sym_COLON_COLON, - ACTIONS(3302), 1, + ACTIONS(3276), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, @@ -103615,239 +103586,288 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_if, anon_sym_PIPE, - [57705] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3438), 1, + [57628] = 8, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3574), 1, sym_identifier, - ACTIONS(3444), 1, - sym_crate, - STATE(1987), 1, - sym_field_declaration, - STATE(2207), 1, - sym_visibility_modifier, + ACTIONS(3576), 1, + sym_metavariable, + STATE(1619), 1, + sym_lifetime, + STATE(1697), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [57732] = 5, - ACTIONS(3605), 1, - anon_sym_fn, - ACTIONS(3607), 1, - anon_sym_extern, + STATE(1899), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57655] = 7, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3578), 1, + anon_sym_for, + STATE(1273), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3602), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [57753] = 7, + ACTIONS(2356), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [57680] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3610), 1, + ACTIONS(3580), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57778] = 7, + [57705] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3612), 1, + ACTIONS(3582), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57803] = 9, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + [57730] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3446), 1, + sym_identifier, + STATE(2048), 1, + sym_field_declaration, + STATE(2226), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57757] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3584), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LT, - STATE(269), 1, - sym_declaration_list, - STATE(1551), 1, - sym_type_parameters, - STATE(1684), 1, - sym_trait_bounds, - STATE(2144), 1, - sym_where_clause, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57772] = 8, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3588), 1, + sym_metavariable, + STATE(1585), 1, + sym_lifetime, + STATE(1737), 1, + sym_constrained_type_parameter, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1804), 2, + sym_const_parameter, + sym_optional_type_parameter, + [57799] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3440), 1, + sym_crate, + STATE(2035), 1, + sym_enum_variant, + STATE(2188), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57832] = 7, + STATE(1480), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57826] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3614), 1, + ACTIONS(3590), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [57857] = 9, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LT, - STATE(933), 1, - sym_declaration_list, - STATE(1548), 1, - sym_type_parameters, - STATE(1720), 1, - sym_trait_bounds, - STATE(2089), 1, - sym_where_clause, + [57851] = 4, + ACTIONS(712), 1, + aux_sym_string_literal_token1, + STATE(1450), 1, + sym_string_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57886] = 9, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3585), 1, - anon_sym_LT, - STATE(362), 1, - sym_declaration_list, - STATE(1581), 1, - sym_type_parameters, - STATE(1730), 1, - sym_trait_bounds, - STATE(2045), 1, - sym_where_clause, + ACTIONS(3320), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57870] = 6, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3456), 1, + sym_identifier, + ACTIONS(3462), 1, + anon_sym_DOT_DOT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [57915] = 4, - ACTIONS(3618), 1, - anon_sym_PLUS, - STATE(1460), 1, - aux_sym_trait_bounds_repeat1, + STATE(1671), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + STATE(2177), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [57893] = 4, + ACTIONS(3197), 1, + anon_sym_trait, + ACTIONS(3592), 1, + anon_sym_impl, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [57934] = 8, - ACTIONS(796), 1, + ACTIONS(2396), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [57912] = 8, + ACTIONS(788), 1, anon_sym_DOT_DOT, - ACTIONS(3621), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3623), 1, + ACTIONS(3596), 1, anon_sym_RBRACE, - ACTIONS(3625), 1, + ACTIONS(3598), 1, anon_sym_COMMA, - ACTIONS(3627), 1, + ACTIONS(3600), 1, anon_sym_ref, - ACTIONS(3629), 1, + ACTIONS(3602), 1, sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1785), 2, + STATE(1914), 2, sym_field_pattern, sym_remaining_field_pattern, - [57961] = 4, - ACTIONS(3631), 1, + [57939] = 4, + ACTIONS(3606), 1, anon_sym_PLUS, - STATE(1484), 1, + STATE(1485), 1, aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3587), 6, + ACTIONS(3604), 6, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [57980] = 4, - ACTIONS(3633), 1, - anon_sym_PLUS, - STATE(1484), 1, - aux_sym_trait_bounds_repeat1, + [57958] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3446), 1, + sym_identifier, + STATE(1952), 1, + sym_field_declaration, + STATE(2226), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3587), 6, - anon_sym_SEMI, - anon_sym_LBRACE, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [57985] = 9, + ACTIONS(3516), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [57999] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3635), 1, - sym_identifier, - ACTIONS(3637), 1, - sym_metavariable, - STATE(1645), 1, - sym_lifetime, - STATE(1698), 1, - sym_constrained_type_parameter, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3610), 1, + anon_sym_LT, + STATE(778), 1, + sym_declaration_list, + STATE(1549), 1, + sym_type_parameters, + STATE(1675), 1, + sym_trait_bounds, + STATE(2065), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1896), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58026] = 8, + [58014] = 8, ACTIONS(2071), 1, anon_sym_SQUOTE, ACTIONS(3484), 1, @@ -103856,626 +103876,687 @@ static uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(3490), 1, sym_metavariable, - STATE(1661), 1, + STATE(1681), 1, sym_lifetime, - STATE(1965), 1, + STATE(1910), 1, sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2011), 2, + STATE(2108), 2, sym_const_parameter, sym_optional_type_parameter, - [58053] = 8, - ACTIONS(796), 1, + [58041] = 8, + ACTIONS(788), 1, anon_sym_DOT_DOT, - ACTIONS(3621), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3627), 1, + ACTIONS(3600), 1, anon_sym_ref, - ACTIONS(3629), 1, + ACTIONS(3602), 1, sym_mutable_specifier, - ACTIONS(3639), 1, + ACTIONS(3612), 1, anon_sym_RBRACE, - ACTIONS(3641), 1, + ACTIONS(3614), 1, anon_sym_COMMA, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1794), 2, + STATE(1823), 2, sym_field_pattern, sym_remaining_field_pattern, - [58080] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, + [58068] = 4, + ACTIONS(848), 1, + anon_sym_LBRACE, + STATE(1391), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(2396), 6, + anon_sym_async, anon_sym_const, - ACTIONS(3643), 1, - sym_identifier, - ACTIONS(3645), 1, - sym_metavariable, - STATE(1604), 1, - sym_lifetime, - STATE(1683), 1, - sym_constrained_type_parameter, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [58087] = 4, + ACTIONS(3606), 1, + anon_sym_PLUS, + STATE(1458), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1942), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58107] = 9, - ACTIONS(3500), 1, + ACTIONS(3616), 6, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3528), 1, anon_sym_where, - ACTIONS(3583), 1, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58106] = 9, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, anon_sym_COLON, - ACTIONS(3585), 1, + ACTIONS(3610), 1, anon_sym_LT, - STATE(868), 1, + STATE(811), 1, sym_declaration_list, - STATE(1579), 1, + STATE(1577), 1, sym_type_parameters, - STATE(1711), 1, + STATE(1687), 1, sym_trait_bounds, - STATE(2062), 1, + STATE(2104), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58136] = 7, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3647), 1, - anon_sym_for, - STATE(1267), 1, - sym_type_arguments, - STATE(1292), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [58161] = 8, + [58135] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, + ACTIONS(3440), 1, sym_crate, - STATE(1931), 1, + ACTIONS(3446), 1, + sym_identifier, + STATE(2149), 1, sym_field_declaration, - STATE(2207), 1, + STATE(2226), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, + STATE(1449), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58188] = 4, - ACTIONS(694), 1, - aux_sym_string_literal_token1, - STATE(1483), 1, - sym_string_literal, + [58162] = 8, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(3486), 1, + anon_sym_const, + ACTIONS(3586), 1, + sym_identifier, + ACTIONS(3588), 1, + sym_metavariable, + STATE(1611), 1, + sym_lifetime, + STATE(1737), 1, + sym_constrained_type_parameter, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3312), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58207] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, - sym_crate, - STATE(1932), 1, - sym_field_declaration, - STATE(2207), 1, - sym_visibility_modifier, + STATE(1804), 2, + sym_const_parameter, + sym_optional_type_parameter, + [58189] = 4, + ACTIONS(3618), 1, + anon_sym_PLUS, + STATE(1458), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58234] = 6, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3450), 1, - sym_identifier, - ACTIONS(3456), 1, - anon_sym_DOT_DOT, + ACTIONS(3616), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58208] = 4, + ACTIONS(3620), 1, + anon_sym_PLUS, + STATE(1458), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1676), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - STATE(2095), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [58257] = 8, - ACTIONS(53), 1, - anon_sym_pub, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(3438), 1, - sym_identifier, - ACTIONS(3444), 1, - sym_crate, - STATE(2138), 1, - sym_field_declaration, - STATE(2207), 1, - sym_visibility_modifier, + ACTIONS(3616), 6, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58227] = 7, + ACTIONS(2356), 1, + anon_sym_PLUS, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3625), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1452), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [58284] = 7, + ACTIONS(3262), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3622), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [58252] = 6, + ACTIONS(3256), 1, + anon_sym_PIPE, + ACTIONS(3258), 1, + anon_sym_COLON, + ACTIONS(3627), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3262), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2356), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [58275] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3649), 1, + ACTIONS(3629), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58309] = 7, + [58300] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3651), 1, + ACTIONS(3631), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58334] = 8, + [58325] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, + ACTIONS(3434), 1, sym_identifier, - STATE(2149), 1, + ACTIONS(3440), 1, + sym_crate, + STATE(1825), 1, sym_enum_variant, - STATE(2367), 1, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1446), 2, + STATE(1069), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58361] = 8, + [58352] = 9, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3610), 1, + anon_sym_LT, + STATE(924), 1, + sym_declaration_list, + STATE(1527), 1, + sym_type_parameters, + STATE(1659), 1, + sym_trait_bounds, + STATE(1996), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58381] = 8, + ACTIONS(3633), 1, + anon_sym_LPAREN, + ACTIONS(3638), 1, + anon_sym_LBRACE, + ACTIONS(3641), 1, + anon_sym_LBRACK, + STATE(1476), 1, + aux_sym_macro_definition_repeat1, + STATE(2311), 1, + sym_token_tree_pattern, + STATE(2375), 1, + sym_macro_rule, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3636), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [58408] = 8, ACTIONS(53), 1, anon_sym_pub, ACTIONS(2075), 1, anon_sym_POUND, - ACTIONS(3444), 1, - sym_crate, - ACTIONS(3458), 1, + ACTIONS(3434), 1, sym_identifier, - STATE(1966), 1, + ACTIONS(3440), 1, + sym_crate, + STATE(1974), 1, sym_enum_variant, - STATE(2367), 1, + STATE(2188), 1, sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, + STATE(1069), 2, sym_attribute_item, aux_sym_enum_variant_list_repeat1, - [58388] = 6, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3653), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3137), 3, + [58435] = 6, + ACTIONS(3622), 1, anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - [58411] = 7, - ACTIONS(2364), 1, - anon_sym_PLUS, - ACTIONS(3250), 1, - anon_sym_PIPE, - ACTIONS(3252), 1, - anon_sym_COLON, - ACTIONS(3655), 1, + ACTIONS(3644), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(2356), 2, + anon_sym_SEMI, + anon_sym_PLUS, ACTIONS(3256), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3262), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3576), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [58436] = 7, + [58458] = 7, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3657), 1, + ACTIONS(3646), 1, anon_sym_for, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1292), 1, + STATE(1300), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [58461] = 4, - ACTIONS(3173), 1, - anon_sym_trait, - ACTIONS(3659), 1, - anon_sym_impl, + [58483] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3434), 1, + sym_identifier, + ACTIONS(3440), 1, + sym_crate, + STATE(2025), 1, + sym_enum_variant, + STATE(2188), 1, + sym_visibility_modifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58510] = 8, + ACTIONS(53), 1, + anon_sym_pub, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3440), 1, + sym_crate, + ACTIONS(3446), 1, + sym_identifier, + STATE(1949), 1, + sym_field_declaration, + STATE(2226), 1, + sym_visibility_modifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [58537] = 5, + ACTIONS(3650), 1, anon_sym_fn, - anon_sym_unsafe, + ACTIONS(3652), 1, anon_sym_extern, - [58480] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3661), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + STATE(1488), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3648), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [58495] = 4, - ACTIONS(3589), 1, - anon_sym_PLUS, - STATE(1460), 1, - aux_sym_trait_bounds_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3663), 6, - anon_sym_SEMI, + [58558] = 9, + ACTIONS(3502), 1, anon_sym_LBRACE, + ACTIONS(3516), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [58514] = 8, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(3486), 1, - anon_sym_const, - ACTIONS(3643), 1, - sym_identifier, - ACTIONS(3645), 1, - sym_metavariable, - STATE(1542), 1, - sym_lifetime, - STATE(1683), 1, - sym_constrained_type_parameter, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3610), 1, + anon_sym_LT, + STATE(287), 1, + sym_declaration_list, + STATE(1557), 1, + sym_type_parameters, + STATE(1729), 1, + sym_trait_bounds, + STATE(2103), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1942), 2, - sym_const_parameter, - sym_optional_type_parameter, - [58541] = 5, - ACTIONS(3667), 1, - anon_sym_fn, - ACTIONS(3669), 1, - anon_sym_extern, + [58587] = 9, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3610), 1, + anon_sym_LT, + STATE(364), 1, + sym_declaration_list, + STATE(1569), 1, + sym_type_parameters, + STATE(1724), 1, + sym_trait_bounds, + STATE(2141), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1453), 2, - sym_extern_modifier, - aux_sym_function_modifiers_repeat1, - ACTIONS(3665), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [58562] = 2, + [58616] = 4, + ACTIONS(3656), 1, + anon_sym_PLUS, + STATE(1485), 1, + aux_sym_trait_bounds_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3671), 7, + ACTIONS(3654), 6, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58576] = 6, - ACTIONS(3524), 1, + [58635] = 7, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3675), 1, - anon_sym_EQ, + ACTIONS(3659), 1, + anon_sym_for, + STATE(1273), 1, + sym_type_arguments, + STATE(1300), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3673), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1950), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [58598] = 3, - ACTIONS(3677), 1, - anon_sym_trait, + ACTIONS(2356), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [58660] = 9, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3610), 1, + anon_sym_LT, + STATE(450), 1, + sym_declaration_list, + STATE(1552), 1, + sym_type_parameters, + STATE(1734), 1, + sym_trait_bounds, + STATE(2127), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [58689] = 5, + ACTIONS(3664), 1, + anon_sym_fn, + ACTIONS(3666), 1, + anon_sym_extern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + STATE(1488), 2, + sym_extern_modifier, + aux_sym_function_modifiers_repeat1, + ACTIONS(3661), 4, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_fn, anon_sym_unsafe, - anon_sym_extern, - [58614] = 8, - ACTIONS(3524), 1, + [58710] = 6, + ACTIONS(3139), 1, anon_sym_LPAREN, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3679), 1, - anon_sym_SEMI, - STATE(411), 1, - sym_field_declaration_list, - STATE(1887), 1, - sym_ordered_field_declaration_list, - STATE(2118), 1, - sym_where_clause, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58640] = 3, - ACTIONS(3681), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3137), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [58733] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3654), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58747] = 3, + ACTIONS(3671), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58656] = 3, - ACTIONS(3683), 1, - anon_sym_COLON, + [58763] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58672] = 8, - ACTIONS(3685), 1, + ACTIONS(3654), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58777] = 8, + ACTIONS(3673), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3675), 1, + anon_sym_RPAREN, + ACTIONS(3677), 1, anon_sym_LBRACE, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, + ACTIONS(3679), 1, anon_sym_LBRACK, - STATE(1449), 1, + STATE(1476), 1, aux_sym_macro_definition_repeat1, - STATE(2021), 1, + STATE(2106), 1, sym_macro_rule, - STATE(2358), 1, + STATE(2311), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58698] = 8, - ACTIONS(3524), 1, + [58803] = 8, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3526), 1, + ACTIONS(3514), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_SEMI, - STATE(305), 1, + STATE(284), 1, sym_field_declaration_list, - STATE(1842), 1, + STATE(1821), 1, sym_ordered_field_declaration_list, - STATE(2181), 1, + STATE(2146), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58724] = 8, - ACTIONS(3685), 1, + [58829] = 8, + ACTIONS(3673), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3677), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, + ACTIONS(3679), 1, anon_sym_LBRACK, - ACTIONS(3695), 1, - anon_sym_RBRACE, - STATE(1449), 1, + ACTIONS(3683), 1, + anon_sym_RPAREN, + STATE(1493), 1, aux_sym_macro_definition_repeat1, - STATE(2010), 1, + STATE(2133), 1, sym_macro_rule, - STATE(2358), 1, + STATE(2311), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58750] = 6, - ACTIONS(3524), 1, + [58855] = 6, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3534), 1, + ACTIONS(3554), 1, anon_sym_LBRACE, - ACTIONS(3699), 1, + ACTIONS(3687), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1863), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [58772] = 8, - ACTIONS(3524), 1, - anon_sym_LPAREN, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3534), 1, - anon_sym_LBRACE, - ACTIONS(3701), 1, - anon_sym_SEMI, - STATE(856), 1, + STATE(1776), 2, sym_field_declaration_list, - STATE(1979), 1, sym_ordered_field_declaration_list, - STATE(1989), 1, - sym_where_clause, + [58877] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58798] = 8, - ACTIONS(3685), 1, - anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3654), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3691), 1, - anon_sym_LBRACK, - ACTIONS(3703), 1, - anon_sym_RPAREN, - STATE(1504), 1, - aux_sym_macro_definition_repeat1, - STATE(2066), 1, - sym_macro_rule, - STATE(2358), 1, - sym_token_tree_pattern, + anon_sym_PLUS, + anon_sym_where, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [58891] = 7, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3600), 1, + anon_sym_ref, + ACTIONS(3602), 1, + sym_mutable_specifier, + ACTIONS(3689), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58824] = 3, - ACTIONS(3705), 1, - sym_identifier, + STATE(1994), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [58915] = 3, + ACTIONS(3691), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 6, + ACTIONS(2396), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [58840] = 8, - ACTIONS(3685), 1, + [58931] = 7, + ACTIONS(3137), 1, + anon_sym_PIPE, + ACTIONS(3139), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, - anon_sym_LBRACE, - ACTIONS(3691), 1, - anon_sym_LBRACK, - ACTIONS(3707), 1, - anon_sym_RPAREN, - STATE(1449), 1, - aux_sym_macro_definition_repeat1, - STATE(2113), 1, - sym_macro_rule, - STATE(2358), 1, - sym_token_tree_pattern, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [58866] = 3, - ACTIONS(3709), 1, - sym_identifier, + ACTIONS(3143), 1, + anon_sym_COLON, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(3693), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [58882] = 2, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [58955] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3711), 7, + ACTIONS(3654), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -104483,11 +104564,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58896] = 2, + [58969] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 7, + ACTIONS(3654), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -104495,64 +104576,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [58910] = 8, - ACTIONS(3685), 1, + [58983] = 8, + ACTIONS(3673), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3677), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, + ACTIONS(3679), 1, anon_sym_LBRACK, - ACTIONS(3713), 1, + ACTIONS(3695), 1, anon_sym_RPAREN, - STATE(1449), 1, + STATE(1476), 1, aux_sym_macro_definition_repeat1, - STATE(2022), 1, + STATE(2130), 1, sym_macro_rule, - STATE(2358), 1, + STATE(2311), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58936] = 7, - ACTIONS(796), 1, + [59009] = 7, + ACTIONS(788), 1, anon_sym_DOT_DOT, - ACTIONS(3621), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3627), 1, + ACTIONS(3600), 1, anon_sym_ref, - ACTIONS(3629), 1, + ACTIONS(3602), 1, sym_mutable_specifier, - ACTIONS(3715), 1, + ACTIONS(3697), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2172), 2, + STATE(1994), 2, sym_field_pattern, sym_remaining_field_pattern, - [58960] = 8, - ACTIONS(3685), 1, + [59033] = 8, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3554), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, - anon_sym_LBRACK, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(1495), 1, - aux_sym_macro_definition_repeat1, - STATE(2038), 1, - sym_macro_rule, - STATE(2358), 1, - sym_token_tree_pattern, + ACTIONS(3699), 1, + anon_sym_SEMI, + STATE(886), 1, + sym_field_declaration_list, + STATE(1982), 1, + sym_ordered_field_declaration_list, + STATE(2175), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [58986] = 2, + [59059] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 7, + ACTIONS(3701), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -104560,123 +104641,235 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59000] = 7, - ACTIONS(3137), 1, - anon_sym_PIPE, - ACTIONS(3139), 1, - anon_sym_LPAREN, - ACTIONS(3143), 1, - anon_sym_COLON, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, + [59073] = 3, + ACTIONS(3703), 1, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [59024] = 2, + ACTIONS(2396), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [59089] = 7, + ACTIONS(788), 1, + anon_sym_DOT_DOT, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3600), 1, + anon_sym_ref, + ACTIONS(3602), 1, + sym_mutable_specifier, + ACTIONS(3705), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 7, - anon_sym_SEMI, + STATE(1994), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [59113] = 3, + ACTIONS(3707), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [59129] = 8, + ACTIONS(3673), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, + ACTIONS(3679), 1, + anon_sym_LBRACK, + ACTIONS(3709), 1, + anon_sym_RBRACE, + STATE(1515), 1, + aux_sym_macro_definition_repeat1, + STATE(2098), 1, + sym_macro_rule, + STATE(2311), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59155] = 8, + ACTIONS(3673), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_LBRACK, + ACTIONS(3711), 1, + anon_sym_RPAREN, + STATE(1503), 1, + aux_sym_macro_definition_repeat1, + STATE(2086), 1, + sym_macro_rule, + STATE(2311), 1, + sym_token_tree_pattern, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59181] = 6, + ACTIONS(3713), 1, + anon_sym_LPAREN, + ACTIONS(3717), 1, anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, + STATE(1780), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_GT, - [59038] = 3, + [59203] = 3, ACTIONS(3721), 1, - sym_identifier, + anon_sym_trait, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3570), 6, + ACTIONS(2396), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59054] = 7, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(3621), 1, - sym_identifier, - ACTIONS(3627), 1, - anon_sym_ref, - ACTIONS(3629), 1, - sym_mutable_specifier, + [59219] = 6, + ACTIONS(3713), 1, + anon_sym_LPAREN, + ACTIONS(3717), 1, + anon_sym_EQ, ACTIONS(3723), 1, + anon_sym_COLON_COLON, + STATE(1780), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59241] = 8, + ACTIONS(3673), 1, + anon_sym_LPAREN, + ACTIONS(3677), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_LBRACK, + ACTIONS(3725), 1, anon_sym_RBRACE, + STATE(1476), 1, + aux_sym_macro_definition_repeat1, + STATE(2132), 1, + sym_macro_rule, + STATE(2311), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2172), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [59078] = 7, - ACTIONS(796), 1, + [59267] = 6, + ACTIONS(3713), 1, + anon_sym_LPAREN, + ACTIONS(3717), 1, + anon_sym_EQ, + ACTIONS(3727), 1, + anon_sym_COLON_COLON, + STATE(1780), 1, + sym_meta_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3715), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [59289] = 7, + ACTIONS(788), 1, anon_sym_DOT_DOT, - ACTIONS(3621), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3627), 1, + ACTIONS(3600), 1, anon_sym_ref, - ACTIONS(3629), 1, + ACTIONS(3602), 1, sym_mutable_specifier, - ACTIONS(3725), 1, + ACTIONS(3729), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2172), 2, + STATE(1994), 2, sym_field_pattern, sym_remaining_field_pattern, - [59102] = 8, - ACTIONS(3685), 1, + [59313] = 3, + ACTIONS(3731), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3530), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [59329] = 8, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3554), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, - anon_sym_LBRACK, - ACTIONS(3727), 1, - anon_sym_RBRACE, - STATE(1493), 1, - aux_sym_macro_definition_repeat1, - STATE(2055), 1, - sym_macro_rule, - STATE(2358), 1, - sym_token_tree_pattern, + ACTIONS(3733), 1, + anon_sym_SEMI, + STATE(785), 1, + sym_field_declaration_list, + STATE(1939), 1, + sym_ordered_field_declaration_list, + STATE(2062), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59128] = 8, - ACTIONS(3685), 1, + [59355] = 8, + ACTIONS(3673), 1, anon_sym_LPAREN, - ACTIONS(3687), 1, + ACTIONS(3677), 1, anon_sym_LBRACE, - ACTIONS(3691), 1, + ACTIONS(3679), 1, anon_sym_LBRACK, - ACTIONS(3729), 1, - anon_sym_RPAREN, - STATE(1500), 1, + ACTIONS(3735), 1, + anon_sym_RBRACE, + STATE(1476), 1, aux_sym_macro_definition_repeat1, - STATE(2139), 1, + STATE(2013), 1, sym_macro_rule, - STATE(2358), 1, + STATE(2311), 1, sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59154] = 2, + [59381] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3616), 7, + ACTIONS(3737), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -104684,1107 +104877,1144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, - [59168] = 8, - ACTIONS(3524), 1, + [59395] = 8, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3534), 1, + ACTIONS(3514), 1, anon_sym_LBRACE, - ACTIONS(3731), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3739), 1, anon_sym_SEMI, - STATE(732), 1, + STATE(393), 1, sym_field_declaration_list, - STATE(1925), 1, + STATE(1834), 1, sym_ordered_field_declaration_list, - STATE(2059), 1, + STATE(2164), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59194] = 6, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, + [59421] = 8, + ACTIONS(3673), 1, anon_sym_LPAREN, - ACTIONS(3737), 1, - anon_sym_EQ, - STATE(1886), 1, - sym_meta_arguments, + ACTIONS(3677), 1, + anon_sym_LBRACE, + ACTIONS(3679), 1, + anon_sym_LBRACK, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(1520), 1, + aux_sym_macro_definition_repeat1, + STATE(2066), 1, + sym_macro_rule, + STATE(2311), 1, + sym_token_tree_pattern, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3735), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [59216] = 3, - ACTIONS(3739), 1, - anon_sym_trait, + [59447] = 3, + ACTIONS(3743), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2388), 6, + ACTIONS(3530), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [59232] = 6, - ACTIONS(3733), 1, + [59463] = 6, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + ACTIONS(3713), 1, anon_sym_LPAREN, - ACTIONS(3743), 1, + ACTIONS(3747), 1, anon_sym_EQ, - ACTIONS(3745), 1, - anon_sym_COLON_COLON, - STATE(1895), 1, + STATE(1772), 1, sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3741), 3, + ACTIONS(3745), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [59254] = 6, - ACTIONS(3733), 1, + [59485] = 6, + ACTIONS(3512), 1, anon_sym_LPAREN, - ACTIONS(3743), 1, + ACTIONS(3554), 1, + anon_sym_LBRACE, + ACTIONS(3751), 1, anon_sym_EQ, - ACTIONS(3747), 1, - anon_sym_COLON_COLON, - STATE(1895), 1, - sym_meta_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3741), 3, + ACTIONS(3749), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1820), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [59507] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(805), 1, + sym_declaration_list, + STATE(1672), 1, + sym_trait_bounds, + STATE(2052), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59530] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3753), 1, + anon_sym_SEMI, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(3757), 1, + anon_sym_DASH_GT, + STATE(870), 1, + sym_block, + STATE(1918), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59553] = 3, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3408), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2494), 4, anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_COMMA, - [59276] = 7, - ACTIONS(796), 1, + anon_sym_DASH_GT, + [59568] = 7, + ACTIONS(3514), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(290), 1, + sym_field_declaration_list, + STATE(1738), 1, + sym_type_parameters, + STATE(2083), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59591] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(3759), 1, + anon_sym_SEMI, + ACTIONS(3761), 1, + anon_sym_DASH_GT, + STATE(802), 1, + sym_block, + STATE(1942), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59614] = 6, + ACTIONS(788), 1, anon_sym_DOT_DOT, - ACTIONS(3621), 1, + ACTIONS(3594), 1, sym_identifier, - ACTIONS(3627), 1, + ACTIONS(3600), 1, anon_sym_ref, - ACTIONS(3629), 1, + ACTIONS(3602), 1, sym_mutable_specifier, - ACTIONS(3749), 1, - anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2172), 2, + STATE(1994), 2, sym_field_pattern, sym_remaining_field_pattern, - [59300] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3616), 7, + [59635] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3763), 1, anon_sym_SEMI, + ACTIONS(3765), 1, anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [59314] = 6, - ACTIONS(3733), 1, - anon_sym_LPAREN, - ACTIONS(3743), 1, - anon_sym_EQ, - ACTIONS(3751), 1, - anon_sym_COLON_COLON, - STATE(1895), 1, - sym_meta_arguments, + STATE(351), 1, + sym_block, + STATE(1814), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59658] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3741), 3, + ACTIONS(3358), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(2398), 4, anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_PLUS, anon_sym_COMMA, - [59336] = 7, - ACTIONS(3528), 1, + anon_sym_DASH_GT, + [59673] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3753), 1, + ACTIONS(3769), 1, anon_sym_LBRACE, - STATE(264), 1, + STATE(299), 1, sym_enum_variant_list, - STATE(1664), 1, + STATE(1743), 1, sym_type_parameters, - STATE(2154), 1, + STATE(2073), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59359] = 7, - ACTIONS(3528), 1, + [59696] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3753), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - STATE(261), 1, - sym_enum_variant_list, - STATE(1721), 1, - sym_type_parameters, - STATE(2080), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3771), 1, + anon_sym_SEMI, + STATE(448), 1, + sym_block, + STATE(1873), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59382] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3755), 1, - anon_sym_SEMI, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(951), 1, - sym_block, - STATE(1891), 1, - sym_where_clause, + [59719] = 4, + ACTIONS(3773), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59405] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3761), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2356), 3, anon_sym_SEMI, - ACTIONS(3763), 1, + anon_sym_RBRACK, + anon_sym_PLUS, + [59736] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3765), 1, anon_sym_LBRACE, - STATE(268), 1, + ACTIONS(3775), 1, + anon_sym_SEMI, + ACTIONS(3777), 1, + anon_sym_DASH_GT, + STATE(346), 1, sym_block, - STATE(1790), 1, + STATE(1850), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59428] = 7, - ACTIONS(3528), 1, + [59759] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3763), 1, - anon_sym_LBRACE, ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(3779), 1, anon_sym_SEMI, - STATE(317), 1, + ACTIONS(3781), 1, + anon_sym_DASH_GT, + STATE(276), 1, sym_block, - STATE(1803), 1, + STATE(1829), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59451] = 7, - ACTIONS(3528), 1, + [59782] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3783), 1, anon_sym_SEMI, - STATE(791), 1, + STATE(729), 1, sym_block, - STATE(1918), 1, + STATE(1932), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59474] = 7, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(369), 1, - sym_field_declaration_list, - STATE(1705), 1, - sym_type_parameters, - STATE(2168), 1, - sym_where_clause, + [59805] = 4, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59497] = 7, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3771), 1, - anon_sym_STAR, - STATE(1884), 1, - sym_use_list, - STATE(2303), 1, - sym_type_arguments, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2356), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [59822] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59520] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(3773), 1, - anon_sym_SEMI, - ACTIONS(3775), 1, + ACTIONS(2398), 2, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(254), 1, - sym_block, - STATE(1786), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [59543] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3777), 1, - anon_sym_LBRACE, - STATE(805), 1, - sym_enum_variant_list, - STATE(1693), 1, - sym_type_parameters, - STATE(2120), 1, - sym_where_clause, + ACTIONS(3358), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(3787), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59839] = 6, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3792), 1, + anon_sym_GT, + STATE(1984), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59566] = 7, - ACTIONS(3528), 1, + ACTIONS(2356), 2, + anon_sym_PLUS, + anon_sym_as, + [59860] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3779), 1, + ACTIONS(3794), 1, anon_sym_SEMI, - ACTIONS(3781), 1, + ACTIONS(3796), 1, anon_sym_DASH_GT, - STATE(914), 1, + STATE(397), 1, sym_block, - STATE(1889), 1, + STATE(1896), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59589] = 7, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3771), 1, - anon_sym_STAR, - STATE(1884), 1, - sym_use_list, - STATE(2304), 1, - sym_type_arguments, + [59883] = 5, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, + ACTIONS(3800), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59612] = 7, - ACTIONS(3528), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3798), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [59902] = 7, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3792), 1, + anon_sym_GT, + STATE(1977), 1, + sym_trait_bounds, + STATE(1984), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [59925] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3783), 1, + ACTIONS(3802), 1, anon_sym_SEMI, - STATE(920), 1, + ACTIONS(3804), 1, + anon_sym_DASH_GT, + STATE(806), 1, sym_block, - STATE(1899), 1, + STATE(1922), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59635] = 7, - ACTIONS(3528), 1, + [59948] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3785), 1, + ACTIONS(3806), 1, anon_sym_SEMI, - STATE(877), 1, + ACTIONS(3808), 1, + anon_sym_DASH_GT, + STATE(951), 1, sym_block, - STATE(1885), 1, + STATE(1966), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59658] = 7, - ACTIONS(3528), 1, + [59971] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3763), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3787), 1, - anon_sym_SEMI, - STATE(337), 1, - sym_block, - STATE(1757), 1, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(863), 1, + sym_declaration_list, + STATE(1680), 1, + sym_trait_bounds, + STATE(2097), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59681] = 7, - ACTIONS(3530), 1, + [59994] = 7, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3583), 1, + ACTIONS(3608), 1, anon_sym_COLON, - ACTIONS(3789), 1, + ACTIONS(3810), 1, anon_sym_SEMI, - ACTIONS(3791), 1, + ACTIONS(3812), 1, anon_sym_EQ, - STATE(2337), 1, + STATE(2245), 1, sym_type_parameters, - STATE(2351), 1, + STATE(2270), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59704] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3793), 1, + [60017] = 4, + ACTIONS(3787), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3358), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2398), 3, anon_sym_SEMI, - ACTIONS(3795), 1, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(741), 1, - sym_block, - STATE(1930), 1, + [60034] = 7, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(268), 1, + sym_declaration_list, + STATE(1706), 1, + sym_trait_bounds, + STATE(2153), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59727] = 7, - ACTIONS(3528), 1, + [60057] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3797), 1, + ACTIONS(3814), 1, anon_sym_SEMI, - STATE(828), 1, + STATE(878), 1, sym_block, - STATE(1883), 1, + STATE(1911), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59750] = 7, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3799), 1, - anon_sym_COMMA, - ACTIONS(3801), 1, - anon_sym_GT, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, - STATE(1806), 1, - sym_trait_bounds, - STATE(1970), 1, - aux_sym_for_lifetimes_repeat1, + [60080] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(3816), 1, + anon_sym_SEMI, + ACTIONS(3818), 1, + anon_sym_DASH_GT, + STATE(417), 1, + sym_block, + STATE(1956), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59773] = 7, - ACTIONS(3528), 1, + [60103] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3803), 1, + ACTIONS(3820), 1, anon_sym_SEMI, - STATE(917), 1, + STATE(379), 1, sym_block, - STATE(1876), 1, + STATE(1833), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59796] = 7, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(745), 1, - sym_declaration_list, - STATE(1706), 1, - sym_trait_bounds, - STATE(2049), 1, - sym_where_clause, + [60126] = 4, + ACTIONS(3822), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59819] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(3805), 1, + ACTIONS(3408), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(2494), 3, anon_sym_SEMI, - ACTIONS(3807), 1, + anon_sym_PLUS, anon_sym_DASH_GT, - STATE(328), 1, - sym_block, - STATE(1983), 1, + [60143] = 7, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(347), 1, + sym_declaration_list, + STATE(1673), 1, + sym_trait_bounds, + STATE(2043), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59842] = 7, - ACTIONS(2191), 1, - anon_sym_PLUS, - ACTIONS(3583), 1, + [60166] = 7, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3608), 1, anon_sym_COLON, - ACTIONS(3809), 1, + ACTIONS(3825), 1, anon_sym_COMMA, - ACTIONS(3811), 1, + ACTIONS(3827), 1, anon_sym_GT, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, - STATE(1806), 1, + STATE(1947), 1, sym_trait_bounds, + STATE(1963), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59865] = 4, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2512), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3400), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3813), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [59882] = 7, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [60189] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(853), 1, - sym_declaration_list, - STATE(1687), 1, - sym_trait_bounds, - STATE(1991), 1, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_field_declaration_list, + STATE(1663), 1, + sym_type_parameters, + STATE(2004), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59905] = 4, - ACTIONS(3816), 1, - anon_sym_RBRACK, + [60212] = 4, + ACTIONS(3829), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2460), 3, - anon_sym_SEMI, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2356), 3, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_DASH_GT, - [59922] = 7, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3583), 1, + anon_sym_COMMA, + [60229] = 5, + ACTIONS(3800), 1, anon_sym_COLON, - ACTIONS(3819), 1, - anon_sym_SEMI, - ACTIONS(3821), 1, - anon_sym_EQ, - STATE(2323), 1, - sym_trait_bounds, - STATE(2371), 1, - sym_type_parameters, + ACTIONS(3829), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59945] = 7, - ACTIONS(3528), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3798), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [60248] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(393), 1, - sym_declaration_list, - STATE(1712), 1, - sym_trait_bounds, - STATE(2064), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3831), 1, + anon_sym_SEMI, + STATE(921), 1, + sym_block, + STATE(1908), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59968] = 7, - ACTIONS(3528), 1, + [60271] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - ACTIONS(3534), 1, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(938), 1, - sym_field_declaration_list, - STATE(1722), 1, + STATE(932), 1, + sym_enum_variant_list, + STATE(1660), 1, sym_type_parameters, - STATE(2082), 1, + STATE(2001), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [59991] = 7, - ACTIONS(3528), 1, + [60294] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3763), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3823), 1, + ACTIONS(3835), 1, anon_sym_SEMI, - ACTIONS(3825), 1, + ACTIONS(3837), 1, anon_sym_DASH_GT, - STATE(404), 1, + STATE(312), 1, sym_block, - STATE(1750), 1, + STATE(1921), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60014] = 7, - ACTIONS(3528), 1, + [60317] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3763), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3827), 1, + ACTIONS(3839), 1, anon_sym_SEMI, - STATE(371), 1, + ACTIONS(3841), 1, + anon_sym_DASH_GT, + STATE(929), 1, sym_block, - STATE(1840), 1, + STATE(1905), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60037] = 7, - ACTIONS(3528), 1, + [60340] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(264), 1, + sym_enum_variant_list, + STATE(1740), 1, + sym_type_parameters, + STATE(1999), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60363] = 7, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_GT, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1947), 1, + sym_trait_bounds, + STATE(1964), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60386] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(3833), 1, + anon_sym_LBRACE, + STATE(858), 1, + sym_enum_variant_list, + STATE(1702), 1, + sym_type_parameters, + STATE(2138), 1, + sym_where_clause, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [60409] = 7, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3583), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3608), 1, anon_sym_COLON, - STATE(323), 1, + STATE(416), 1, sym_declaration_list, - STATE(1681), 1, + STATE(1727), 1, sym_trait_bounds, - STATE(2086), 1, + STATE(2142), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60060] = 4, - ACTIONS(3813), 1, - anon_sym_RBRACK, + [60432] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3843), 1, + anon_sym_SEMI, + STATE(784), 1, + sym_block, + STATE(1898), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3400), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(2512), 3, - anon_sym_SEMI, + [60455] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - [60077] = 4, + ACTIONS(3845), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_block, + STATE(1894), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2460), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(3418), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3816), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60094] = 7, - ACTIONS(3528), 1, + [60478] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3763), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3829), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3847), 1, anon_sym_SEMI, - ACTIONS(3831), 1, - anon_sym_DASH_GT, - STATE(440), 1, + STATE(365), 1, sym_block, - STATE(1762), 1, + STATE(1818), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60117] = 7, - ACTIONS(3528), 1, + [60501] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3763), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3833), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3849), 1, anon_sym_SEMI, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - STATE(394), 1, + STATE(766), 1, sym_block, - STATE(1776), 1, + STATE(1892), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60140] = 4, - ACTIONS(3837), 1, - anon_sym_COLON_COLON, + [60524] = 7, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3851), 1, + anon_sym_SEMI, + STATE(408), 1, + sym_block, + STATE(1920), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2364), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [60157] = 5, - ACTIONS(3841), 1, + [60547] = 7, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(3608), 1, anon_sym_COLON, - ACTIONS(3843), 1, - anon_sym_COLON_COLON, + ACTIONS(3853), 1, + anon_sym_SEMI, + ACTIONS(3855), 1, + anon_sym_EQ, + STATE(2303), 1, + sym_trait_bounds, + STATE(2374), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3839), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60176] = 5, - ACTIONS(3837), 1, - anon_sym_COLON_COLON, - ACTIONS(3847), 1, - anon_sym_COLON, + [60570] = 7, + ACTIONS(3089), 1, + anon_sym_LBRACE, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3857), 1, + sym_identifier, + ACTIONS(3859), 1, + anon_sym_STAR, + STATE(1763), 1, + sym_use_list, + STATE(2268), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3845), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60195] = 7, - ACTIONS(3528), 1, + [60593] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_SEMI, - ACTIONS(3851), 1, - anon_sym_DASH_GT, - STATE(904), 1, - sym_block, - STATE(1951), 1, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(912), 1, + sym_declaration_list, + STATE(1662), 1, + sym_trait_bounds, + STATE(1991), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60218] = 4, - ACTIONS(3853), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2364), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [60235] = 7, - ACTIONS(3526), 1, + [60616] = 7, + ACTIONS(3514), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - STATE(260), 1, + STATE(372), 1, sym_field_declaration_list, - STATE(1738), 1, + STATE(1713), 1, sym_type_parameters, - STATE(2058), 1, + STATE(2171), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60258] = 6, - ACTIONS(3029), 1, + [60639] = 5, + ACTIONS(3863), 1, + anon_sym_COLON, + ACTIONS(3865), 1, anon_sym_COLON_COLON, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_GT, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 2, - anon_sym_PLUS, - anon_sym_as, - [60279] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3418), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2460), 4, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3861), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - anon_sym_DASH_GT, - [60294] = 6, - ACTIONS(796), 1, - anon_sym_DOT_DOT, - ACTIONS(3621), 1, + [60658] = 7, + ACTIONS(3089), 1, + anon_sym_LBRACE, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3857), 1, sym_identifier, - ACTIONS(3627), 1, - anon_sym_ref, - ACTIONS(3629), 1, - sym_mutable_specifier, + ACTIONS(3859), 1, + anon_sym_STAR, + STATE(1763), 1, + sym_use_list, + STATE(2255), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(2172), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [60315] = 7, - ACTIONS(3528), 1, + [60681] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(3554), 1, anon_sym_LBRACE, - ACTIONS(3855), 1, - anon_sym_SEMI, - ACTIONS(3857), 1, - anon_sym_DASH_GT, - STATE(861), 1, - sym_block, - STATE(1910), 1, + STATE(809), 1, + sym_field_declaration_list, + STATE(1684), 1, + sym_type_parameters, + STATE(2101), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60338] = 7, - ACTIONS(3528), 1, + [60704] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3763), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3859), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3867), 1, anon_sym_SEMI, - ACTIONS(3861), 1, - anon_sym_DASH_GT, - STATE(402), 1, + STATE(334), 1, sym_block, - STATE(1901), 1, + STATE(1758), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60361] = 7, - ACTIONS(3528), 1, + [60727] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3757), 1, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(3863), 1, + ACTIONS(3869), 1, anon_sym_SEMI, - ACTIONS(3865), 1, + ACTIONS(3871), 1, anon_sym_DASH_GT, - STATE(795), 1, + STATE(320), 1, sym_block, - STATE(1946), 1, + STATE(1765), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60384] = 4, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [60750] = 4, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2364), 3, - anon_sym_RPAREN, + ACTIONS(2494), 2, anon_sym_PLUS, - anon_sym_COMMA, - [60401] = 5, - ACTIONS(3847), 1, + anon_sym_DASH_GT, + ACTIONS(3408), 2, anon_sym_COLON, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3845), 2, + anon_sym_PIPE, + ACTIONS(3822), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60420] = 7, - ACTIONS(3238), 1, - anon_sym_EQ, - ACTIONS(3583), 1, + [60767] = 7, + ACTIONS(3608), 1, anon_sym_COLON, - ACTIONS(3869), 1, + ACTIONS(3873), 1, anon_sym_COMMA, - ACTIONS(3871), 1, + ACTIONS(3875), 1, anon_sym_GT, - STATE(1802), 1, + STATE(1893), 1, + aux_sym_for_lifetimes_repeat1, + STATE(1977), 1, sym_trait_bounds, - STATE(1960), 1, + STATE(1984), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60443] = 7, - ACTIONS(3528), 1, + [60790] = 7, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3763), 1, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(3873), 1, + ACTIONS(3877), 1, anon_sym_SEMI, - STATE(304), 1, + ACTIONS(3879), 1, + anon_sym_DASH_GT, + STATE(741), 1, sym_block, - STATE(1797), 1, + STATE(1954), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60466] = 7, - ACTIONS(3238), 1, - anon_sym_EQ, - ACTIONS(3240), 1, - anon_sym_COMMA, - ACTIONS(3242), 1, - anon_sym_GT, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(1802), 1, - sym_trait_bounds, - STATE(1804), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60489] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3534), 1, + [60813] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(827), 1, - sym_field_declaration_list, - STATE(1659), 1, - sym_type_parameters, - STATE(2001), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(363), 1, + sym_declaration_list, + STATE(2178), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60512] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(3777), 1, - anon_sym_LBRACE, - STATE(835), 1, - sym_enum_variant_list, - STATE(1657), 1, - sym_type_parameters, - STATE(1999), 1, - sym_where_clause, + [60833] = 6, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3157), 1, + anon_sym_COLON_COLON, + STATE(821), 1, + sym_parameters, + STATE(1266), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60535] = 7, - ACTIONS(3500), 1, + [60853] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(907), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(420), 1, sym_declaration_list, - STATE(1728), 1, - sym_trait_bounds, - STATE(2094), 1, + STATE(2074), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60558] = 7, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3875), 1, - anon_sym_SEMI, - ACTIONS(3877), 1, - anon_sym_DASH_GT, - STATE(909), 1, - sym_block, - STATE(1902), 1, - sym_where_clause, + [60873] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60581] = 7, - ACTIONS(3528), 1, + ACTIONS(3881), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(296), 1, - sym_declaration_list, - STATE(1672), 1, - sym_trait_bounds, - STATE(2134), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [60885] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60604] = 7, - ACTIONS(3528), 1, + ACTIONS(3883), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3763), 1, + anon_sym_EQ, + anon_sym_COMMA, + [60897] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_SEMI, - STATE(345), 1, - sym_block, - STATE(1765), 1, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(335), 1, + sym_declaration_list, + STATE(2170), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60627] = 3, + [60917] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3582), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3400), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(2512), 4, - anon_sym_RPAREN, + ACTIONS(2356), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [60642] = 6, - ACTIONS(3528), 1, anon_sym_where, - ACTIONS(3554), 1, + [60933] = 6, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(416), 1, + STATE(730), 1, sym_declaration_list, - STATE(2148), 1, + STATE(2023), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60662] = 4, - ACTIONS(3883), 1, - anon_sym_as, + [60953] = 4, + ACTIONS(638), 1, + anon_sym_LBRACE, ACTIONS(3885), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3881), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [60678] = 4, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3887), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [60694] = 2, + STATE(235), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [60969] = 6, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(278), 1, + sym_declaration_list, + STATE(2116), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3594), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - [60706] = 5, - ACTIONS(3889), 1, + [60989] = 5, + ACTIONS(770), 1, anon_sym_RPAREN, - ACTIONS(3891), 1, + ACTIONS(3887), 1, anon_sym_COMMA, - STATE(1959), 1, + STATE(1761), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, @@ -105792,476 +106022,481 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3137), 2, anon_sym_COLON, anon_sym_PIPE, - [60724] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3614), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [60740] = 6, + [61007] = 6, ACTIONS(3149), 1, anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, ACTIONS(3157), 1, anon_sym_COLON_COLON, - ACTIONS(3236), 1, - anon_sym_COLON, - STATE(1262), 1, + STATE(1266), 1, sym_type_arguments, - STATE(1956), 1, - sym_trait_bounds, + STATE(1294), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60760] = 6, - ACTIONS(3893), 1, - anon_sym_RPAREN, - ACTIONS(3895), 1, - anon_sym_COLON, - ACTIONS(3897), 1, - anon_sym_COMMA, - ACTIONS(3899), 1, - anon_sym_PIPE, - STATE(1981), 1, - aux_sym_tuple_pattern_repeat1, + [61027] = 4, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60780] = 5, - ACTIONS(3901), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3861), 2, anon_sym_RPAREN, - ACTIONS(3903), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_parameters_repeat1, + [61043] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3659), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [60798] = 6, - ACTIONS(3500), 1, + ACTIONS(2356), 3, anon_sym_LBRACE, - ACTIONS(3528), 1, + anon_sym_PLUS, anon_sym_where, - ACTIONS(3759), 1, + [61059] = 6, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(950), 1, + STATE(443), 1, sym_declaration_list, - STATE(2107), 1, + STATE(2129), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60818] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [61079] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(846), 1, + STATE(923), 1, sym_declaration_list, - STATE(1994), 1, + STATE(1995), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60838] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3649), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 3, + [61099] = 6, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - anon_sym_where, - [60854] = 2, + STATE(823), 1, + sym_declaration_list, + STATE(2118), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3905), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [61119] = 6, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [60866] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3610), 1, - anon_sym_for, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(247), 1, + sym_declaration_list, + STATE(2120), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [60882] = 3, + [61139] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(3338), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(2696), 3, + ACTIONS(2650), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [60896] = 2, + [61153] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3907), 5, + ACTIONS(3889), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60908] = 4, - ACTIONS(2696), 1, + [61165] = 4, + ACTIONS(2650), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3346), 2, + ACTIONS(3338), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3909), 2, + ACTIONS(3891), 2, anon_sym_RPAREN, anon_sym_COMMA, - [60924] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [61181] = 5, + ACTIONS(3242), 1, + anon_sym_EQ, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1947), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3894), 2, + anon_sym_COMMA, + anon_sym_GT, + [61199] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3896), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(947), 1, - sym_declaration_list, - STATE(2106), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [61211] = 4, + ACTIONS(15), 1, + anon_sym_LBRACE, + ACTIONS(3898), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(52), 3, + sym_if_expression, + sym_if_let_expression, + sym_block, + [61227] = 6, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3792), 1, + anon_sym_GT, + STATE(1977), 1, + sym_trait_bounds, + STATE(1984), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [60944] = 2, + [61247] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3912), 5, + ACTIONS(3900), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [60956] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3651), 1, - anon_sym_for, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(2364), 3, + [61259] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [60972] = 6, - ACTIONS(3583), 1, - anon_sym_COLON, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_GT, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, - STATE(1806), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [60992] = 6, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(289), 1, + STATE(260), 1, sym_declaration_list, - STATE(2129), 1, + STATE(2181), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61012] = 6, - ACTIONS(2302), 1, - anon_sym_LPAREN, + [61279] = 6, ACTIONS(3149), 1, anon_sym_LT2, ACTIONS(3157), 1, anon_sym_COLON_COLON, - STATE(875), 1, - sym_parameters, - STATE(1262), 1, + ACTIONS(3240), 1, + anon_sym_COLON, + STATE(1266), 1, sym_type_arguments, + STATE(1830), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61032] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [61299] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(882), 1, + STATE(906), 1, sym_declaration_list, - STATE(2015), 1, + STATE(2110), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61052] = 6, - ACTIONS(3528), 1, + [61319] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3636), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + [61331] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(295), 1, + STATE(903), 1, sym_declaration_list, - STATE(2131), 1, + STATE(2109), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61072] = 4, - ACTIONS(3230), 1, + [61351] = 4, + ACTIONS(3238), 1, anon_sym_COLON_COLON, - ACTIONS(3657), 1, + ACTIONS(3646), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61088] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(841), 1, - sym_declaration_list, - STATE(2087), 1, - sym_where_clause, + [61367] = 6, + ACTIONS(3608), 1, + anon_sym_COLON, + ACTIONS(3902), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_GT, + STATE(1965), 1, + aux_sym_type_parameters_repeat1, + STATE(1977), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61108] = 6, - ACTIONS(3500), 1, + [61387] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(838), 1, + STATE(358), 1, sym_declaration_list, - STATE(2084), 1, + STATE(2154), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61128] = 4, - ACTIONS(3909), 1, - anon_sym_RBRACK, + [61407] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2696), 2, + ACTIONS(3906), 5, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(3346), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [61144] = 6, - ACTIONS(3528), 1, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(270), 1, - sym_declaration_list, - STATE(2150), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61164] = 6, - ACTIONS(3500), 1, + anon_sym_EQ, + anon_sym_COMMA, + [61419] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(808), 1, + STATE(421), 1, sym_declaration_list, - STATE(2078), 1, + STATE(2068), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61184] = 4, - ACTIONS(740), 1, + [61439] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(3914), 1, + ACTIONS(3908), 1, anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(231), 3, + STATE(960), 3, sym_if_expression, sym_if_let_expression, sym_block, - [61200] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, + [61455] = 5, + ACTIONS(3910), 1, + anon_sym_RPAREN, + ACTIONS(3912), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3137), 2, + anon_sym_COLON, + anon_sym_PIPE, + [61473] = 5, + ACTIONS(3914), 1, + anon_sym_RPAREN, ACTIONS(3916), 1, - anon_sym_if, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(991), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [61216] = 4, - ACTIONS(3230), 1, + ACTIONS(3137), 2, + anon_sym_COLON, + anon_sym_PIPE, + [61491] = 4, + ACTIONS(3238), 1, anon_sym_COLON_COLON, - ACTIONS(3612), 1, + ACTIONS(3631), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61232] = 6, - ACTIONS(3500), 1, + [61507] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(807), 1, + STATE(273), 1, sym_declaration_list, - STATE(1985), 1, + STATE(2107), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61252] = 4, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [61527] = 4, + ACTIONS(3891), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3839), 2, - anon_sym_RPAREN, + ACTIONS(2650), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(3338), 2, anon_sym_COMMA, - [61268] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, + anon_sym_PIPE, + [61543] = 6, ACTIONS(3918), 1, + anon_sym_RPAREN, + ACTIONS(3920), 1, + anon_sym_COLON, + ACTIONS(3922), 1, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_parameters_repeat1, + ACTIONS(3924), 1, + anon_sym_PIPE, + STATE(1865), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61286] = 2, + [61563] = 6, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(761), 1, + sym_declaration_list, + STATE(2090), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3920), 5, - anon_sym_SEMI, - anon_sym_RBRACE, + [61583] = 6, + ACTIONS(3516), 1, anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61298] = 4, - ACTIONS(15), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_if, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(758), 1, + sym_declaration_list, + STATE(2087), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(58), 3, - sym_if_expression, - sym_if_let_expression, - sym_block, - [61314] = 6, - ACTIONS(3500), 1, + [61603] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(773), 1, + STATE(306), 1, sym_declaration_list, - STATE(2031), 1, + STATE(2070), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61334] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [61623] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3759), 1, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(767), 1, + STATE(910), 1, sym_declaration_list, - STATE(2034), 1, + STATE(1988), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61354] = 2, + [61643] = 4, + ACTIONS(3829), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3924), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3861), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [61366] = 2, + [61659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106271,7 +106506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61378] = 2, + [61671] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, @@ -106281,47 +106516,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61390] = 5, - ACTIONS(3930), 1, - anon_sym_RPAREN, - ACTIONS(3933), 1, - anon_sym_COMMA, - STATE(1959), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61408] = 4, - ACTIONS(3938), 1, - anon_sym_as, - ACTIONS(3940), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3936), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [61424] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(749), 1, - sym_declaration_list, - STATE(2046), 1, - sym_where_clause, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61444] = 4, - ACTIONS(3837), 1, + [61683] = 4, + ACTIONS(3829), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -106329,83 +106525,90 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3147), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3887), 2, + ACTIONS(3930), 2, anon_sym_RPAREN, anon_sym_COMMA, - [61460] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3942), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, - anon_sym_COMMA, - [61472] = 6, - ACTIONS(3528), 1, + [61699] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(342), 1, + STATE(913), 1, sym_declaration_list, - STATE(2024), 1, + STATE(2034), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61492] = 4, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3574), 1, - anon_sym_for, + [61719] = 6, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(909), 1, + sym_declaration_list, + STATE(2080), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + [61739] = 6, + ACTIONS(3502), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [61508] = 6, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(387), 1, + STATE(245), 1, sym_declaration_list, - STATE(2053), 1, + STATE(2102), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61528] = 2, + [61759] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3944), 5, + ACTIONS(3932), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61540] = 2, + [61771] = 4, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3946), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_where, - anon_sym_EQ, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3930), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [61787] = 5, + ACTIONS(758), 1, + anon_sym_RPAREN, + ACTIONS(3934), 1, anon_sym_COMMA, - [61552] = 4, + STATE(1934), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3137), 2, + anon_sym_COLON, + anon_sym_PIPE, + [61805] = 4, ACTIONS(3938), 1, anon_sym_as, - ACTIONS(3948), 1, + ACTIONS(3940), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -106414,1338 +106617,1327 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61568] = 6, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(346), 1, - sym_declaration_list, - STATE(2136), 1, - sym_where_clause, + [61821] = 4, + ACTIONS(3944), 1, + anon_sym_as, + ACTIONS(3946), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61588] = 4, - ACTIONS(3837), 1, + ACTIONS(3942), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [61837] = 4, + ACTIONS(3944), 1, + anon_sym_as, + ACTIONS(3948), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3839), 2, - anon_sym_RPAREN, + ACTIONS(3942), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - [61604] = 6, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(415), 1, - sym_declaration_list, - STATE(2146), 1, - sym_where_clause, + [61853] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61624] = 6, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3950), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_where, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(893), 1, - sym_declaration_list, - STATE(2099), 1, - sym_where_clause, + anon_sym_EQ, + anon_sym_COMMA, + [61865] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3580), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61644] = 6, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(2356), 3, anon_sym_LBRACE, - ACTIONS(3759), 1, anon_sym_PLUS, - STATE(334), 1, - sym_declaration_list, - STATE(2006), 1, - sym_where_clause, + anon_sym_where, + [61881] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3590), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61664] = 6, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(2356), 3, anon_sym_LBRACE, - ACTIONS(3759), 1, anon_sym_PLUS, - STATE(367), 1, - sym_declaration_list, - STATE(2039), 1, - sym_where_clause, + anon_sym_where, + [61897] = 5, + ACTIONS(3952), 1, + anon_sym_RPAREN, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61684] = 6, - ACTIONS(3583), 1, + ACTIONS(3137), 2, anon_sym_COLON, - ACTIONS(3950), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_GT, - STATE(1806), 1, - sym_trait_bounds, - STATE(1962), 1, - aux_sym_type_parameters_repeat1, + anon_sym_PIPE, + [61915] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3578), 1, + anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61704] = 4, - ACTIONS(3938), 1, + ACTIONS(2356), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [61931] = 4, + ACTIONS(3944), 1, anon_sym_as, - ACTIONS(3954), 1, + ACTIONS(3958), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3936), 3, + ACTIONS(3942), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [61720] = 2, + [61947] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3956), 5, + ACTIONS(3960), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_where, anon_sym_EQ, anon_sym_COMMA, - [61732] = 6, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3157), 1, - anon_sym_COLON_COLON, - STATE(1262), 1, - sym_type_arguments, - STATE(1291), 1, - sym_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [61752] = 5, + [61959] = 4, ACTIONS(3238), 1, - anon_sym_EQ, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(1802), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3958), 2, - anon_sym_COMMA, - anon_sym_GT, - [61770] = 4, - ACTIONS(3230), 1, anon_sym_COLON_COLON, - ACTIONS(3647), 1, + ACTIONS(3629), 1, anon_sym_for, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2364), 3, + ACTIONS(2356), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [61786] = 6, - ACTIONS(3528), 1, + [61975] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(365), 1, + STATE(828), 1, sym_declaration_list, - STATE(2041), 1, + STATE(2049), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61806] = 5, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3960), 1, - anon_sym_COMMA, - STATE(1921), 1, - aux_sym_parameters_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - [61824] = 6, - ACTIONS(3528), 1, + [61995] = 6, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - STATE(341), 1, + STATE(881), 1, sym_declaration_list, - STATE(2137), 1, + STATE(2037), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61844] = 5, - ACTIONS(758), 1, + [62015] = 5, + ACTIONS(770), 1, anon_sym_RPAREN, - ACTIONS(3759), 1, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3960), 1, + ACTIONS(3887), 1, anon_sym_COMMA, - STATE(1921), 1, + STATE(1761), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61861] = 5, - ACTIONS(2191), 1, + [62032] = 5, + ACTIONS(3767), 1, anon_sym_PLUS, ACTIONS(3962), 1, - anon_sym_COMMA, + anon_sym_RPAREN, ACTIONS(3964), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_arguments_repeat1, + anon_sym_COMMA, + STATE(1859), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61878] = 5, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1267), 1, - sym_type_arguments, - STATE(1283), 1, - sym_parameters, + [62049] = 5, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_declaration_list, + STATE(2051), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61895] = 5, - ACTIONS(3528), 1, + [62066] = 5, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3777), 1, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(737), 1, + STATE(791), 1, sym_enum_variant_list, - STATE(2056), 1, + STATE(2059), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61912] = 5, - ACTIONS(3089), 1, + [62083] = 5, + ACTIONS(758), 1, + anon_sym_RPAREN, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3934), 1, + anon_sym_COMMA, + STATE(1934), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62100] = 5, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3771), 1, - anon_sym_STAR, - STATE(1884), 1, - sym_use_list, + STATE(835), 1, + sym_declaration_list, + STATE(2046), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61929] = 5, - ACTIONS(3528), 1, + [62117] = 5, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3534), 1, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(729), 1, + STATE(780), 1, sym_field_declaration_list, - STATE(2061), 1, + STATE(2064), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61946] = 4, + [62134] = 5, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3966), 1, - anon_sym_DQUOTE, - STATE(1689), 1, - aux_sym_string_literal_repeat1, + anon_sym_RPAREN, + ACTIONS(3968), 1, + anon_sym_COMMA, + STATE(1771), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3968), 2, - sym__string_content, - sym_escape_sequence, - [61961] = 4, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(1806), 1, - sym_trait_bounds, + [62151] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, + ACTIONS(3137), 2, + anon_sym_COLON, + anon_sym_PIPE, ACTIONS(3970), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - [61976] = 5, - ACTIONS(3759), 1, + [62164] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3972), 1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(3972), 3, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [62177] = 5, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(1539), 1, + sym_parameters, + STATE(2071), 1, + sym_type_parameters, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [62194] = 5, + ACTIONS(2185), 1, + anon_sym_PLUS, ACTIONS(3974), 1, anon_sym_COMMA, - STATE(1939), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3976), 1, + anon_sym_GT, + STATE(1960), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [61993] = 3, + [62211] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(898), 1, + sym_line_comment, + ACTIONS(3978), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(3980), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62226] = 5, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3974), 1, + anon_sym_COMMA, ACTIONS(3976), 1, - anon_sym_in, + anon_sym_GT, + STATE(1960), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3978), 3, - sym_self, - sym_super, - sym_crate, - [62006] = 5, - ACTIONS(3528), 1, + [62243] = 4, + ACTIONS(2075), 1, + anon_sym_POUND, + ACTIONS(3982), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + STATE(1069), 2, + sym_attribute_item, + aux_sym_enum_variant_list_repeat1, + [62258] = 5, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3753), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(425), 1, - sym_enum_variant_list, - STATE(2026), 1, + STATE(788), 1, + sym_declaration_list, + STATE(2091), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62023] = 4, - ACTIONS(3841), 1, - anon_sym_COLON, - ACTIONS(3843), 1, - anon_sym_COLON_COLON, + [62275] = 5, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + STATE(401), 1, + sym_declaration_list, + STATE(2113), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62038] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1559), 1, - sym_parameters, - STATE(2130), 1, - sym_type_parameters, + [62292] = 5, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3910), 1, + anon_sym_RPAREN, + ACTIONS(3912), 1, + anon_sym_COMMA, + STATE(1970), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62055] = 3, - ACTIONS(3980), 1, - anon_sym_COLON, + [62309] = 5, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(862), 1, + sym_declaration_list, + STATE(2096), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3320), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [62068] = 4, - ACTIONS(3982), 1, + [62326] = 4, + ACTIONS(3984), 1, anon_sym_DQUOTE, - STATE(1668), 1, + STATE(1676), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3984), 2, + ACTIONS(3986), 2, sym__string_content, sym_escape_sequence, - [62083] = 4, + [62341] = 4, ACTIONS(3), 1, sym_block_comment, ACTIONS(898), 1, sym_line_comment, - ACTIONS(3987), 1, + ACTIONS(3989), 1, aux_sym_token_repetition_pattern_token1, - ACTIONS(3989), 3, + ACTIONS(3991), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [62098] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1580), 1, - sym_parameters, - STATE(2105), 1, - sym_type_parameters, + [62356] = 3, + ACTIONS(3993), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62115] = 5, - ACTIONS(3899), 1, + ACTIONS(3370), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3991), 1, - anon_sym_SEMI, - ACTIONS(3993), 1, + [62369] = 4, + ACTIONS(3863), 1, anon_sym_COLON, - ACTIONS(3995), 1, - anon_sym_EQ, + ACTIONS(3865), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62132] = 5, - ACTIONS(3528), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62384] = 5, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(942), 1, sym_declaration_list, - STATE(2050), 1, + STATE(2115), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62149] = 5, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3997), 1, - sym_identifier, - ACTIONS(3999), 1, - anon_sym_STAR, - STATE(1880), 1, - sym_use_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [62166] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1553), 1, - sym_parameters, - STATE(2152), 1, - sym_type_parameters, + [62401] = 4, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1977), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62183] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1563), 1, - sym_parameters, - STATE(2151), 1, - sym_type_parameters, + ACTIONS(3995), 2, + anon_sym_COMMA, + anon_sym_GT, + [62416] = 4, + ACTIONS(3997), 1, + anon_sym_DQUOTE, + STATE(1683), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62200] = 4, - ACTIONS(2075), 1, - anon_sym_POUND, + ACTIONS(3999), 2, + sym__string_content, + sym_escape_sequence, + [62431] = 4, ACTIONS(4001), 1, - sym_identifier, + anon_sym_DQUOTE, + STATE(1676), 1, + aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - STATE(1068), 2, - sym_attribute_item, - aux_sym_enum_variant_list_repeat1, - [62215] = 5, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(4003), 2, + sym__string_content, + sym_escape_sequence, + [62446] = 5, + ACTIONS(3516), 1, anon_sym_where, - STATE(746), 1, - sym_declaration_list, - STATE(2048), 1, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_field_declaration_list, + STATE(1993), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62232] = 4, - ACTIONS(3583), 1, - anon_sym_COLON, - STATE(1806), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4003), 2, - anon_sym_COMMA, - anon_sym_GT, - [62247] = 4, - ACTIONS(4008), 1, + [62463] = 5, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4005), 1, + anon_sym_RBRACK, + ACTIONS(4007), 1, anon_sym_COMMA, - STATE(1679), 1, + STATE(1810), 1, aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4006), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [62262] = 5, - ACTIONS(3153), 1, - anon_sym_LPAREN, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(1570), 1, - sym_parameters, - STATE(2085), 1, - sym_type_parameters, - ACTIONS(3), 2, + [62480] = 4, + ACTIONS(3), 1, sym_block_comment, + ACTIONS(898), 1, sym_line_comment, - [62279] = 5, - ACTIONS(3528), 1, + ACTIONS(4009), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4011), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62495] = 5, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(258), 1, + STATE(892), 1, sym_declaration_list, - STATE(2042), 1, + STATE(1990), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62296] = 3, - ACTIONS(3899), 1, + [62512] = 4, + ACTIONS(3), 1, + sym_block_comment, + ACTIONS(898), 1, + sym_line_comment, + ACTIONS(4013), 1, + aux_sym_token_repetition_pattern_token1, + ACTIONS(4015), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [62527] = 5, + ACTIONS(3370), 1, anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_SEMI, + ACTIONS(4019), 1, + anon_sym_COLON, + ACTIONS(4021), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4006), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [62309] = 5, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_GT, - ACTIONS(4011), 1, - anon_sym_EQ, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, + [62544] = 5, + ACTIONS(2302), 1, + anon_sym_LPAREN, + ACTIONS(3149), 1, + anon_sym_LT2, + STATE(826), 1, + sym_parameters, + STATE(1273), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62326] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + [62561] = 5, + ACTIONS(4023), 1, + anon_sym_LPAREN, + ACTIONS(4025), 1, anon_sym_LBRACE, - STATE(391), 1, - sym_declaration_list, - STATE(2063), 1, - sym_where_clause, + ACTIONS(4027), 1, + anon_sym_LBRACK, + STATE(1316), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62343] = 4, - ACTIONS(3843), 1, - anon_sym_COLON_COLON, - ACTIONS(3847), 1, - anon_sym_COLON, + [62578] = 5, + ACTIONS(3089), 1, + anon_sym_LBRACE, + ACTIONS(3857), 1, + sym_identifier, + ACTIONS(3859), 1, + anon_sym_STAR, + STATE(1763), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [62358] = 3, - ACTIONS(4013), 1, + [62595] = 3, + ACTIONS(4029), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4015), 3, + ACTIONS(4031), 3, sym_self, sym_super, sym_crate, - [62371] = 5, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - STATE(752), 1, - sym_declaration_list, - STATE(2043), 1, - sym_where_clause, + [62608] = 5, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_SEMI, + ACTIONS(4035), 1, + anon_sym_COLON, + ACTIONS(4037), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62388] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4017), 1, - anon_sym_RPAREN, - ACTIONS(4019), 1, - anon_sym_COMMA, - STATE(1813), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [62625] = 4, + ACTIONS(3800), 1, + anon_sym_COLON, + ACTIONS(3865), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62405] = 4, - ACTIONS(4021), 1, - anon_sym_DQUOTE, - STATE(1668), 1, - aux_sym_string_literal_repeat1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62640] = 4, + ACTIONS(4041), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4023), 2, - sym__string_content, - sym_escape_sequence, - [62420] = 5, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - STATE(969), 1, - sym_token_tree, + ACTIONS(4039), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [62655] = 5, + ACTIONS(3902), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_GT, + ACTIONS(4044), 1, + anon_sym_EQ, + STATE(1965), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62437] = 5, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4031), 1, - anon_sym_SEMI, - ACTIONS(4033), 1, + [62672] = 5, + ACTIONS(3920), 1, anon_sym_COLON, - ACTIONS(4035), 1, - anon_sym_EQ, + ACTIONS(4046), 1, + anon_sym_COMMA, + ACTIONS(4048), 1, + anon_sym_PIPE, + STATE(1923), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62454] = 5, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3759), 1, + [62689] = 5, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3918), 1, + ACTIONS(4050), 1, + anon_sym_RPAREN, + ACTIONS(4052), 1, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_parameters_repeat1, + STATE(1961), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62471] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3777), 1, + [62706] = 5, + ACTIONS(3089), 1, anon_sym_LBRACE, - STATE(921), 1, - sym_enum_variant_list, - STATE(2028), 1, - sym_where_clause, + ACTIONS(4054), 1, + sym_identifier, + ACTIONS(4056), 1, + anon_sym_STAR, + STATE(1753), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62488] = 4, - ACTIONS(3), 1, + [62723] = 4, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1977), 1, + sym_trait_bounds, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(898), 1, sym_line_comment, - ACTIONS(4037), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4039), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62503] = 5, - ACTIONS(3895), 1, - anon_sym_COLON, - ACTIONS(4041), 1, + ACTIONS(4058), 2, anon_sym_COMMA, - ACTIONS(4043), 1, - anon_sym_PIPE, - STATE(1814), 1, - aux_sym_closure_parameters_repeat1, + anon_sym_GT, + [62738] = 5, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3833), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_enum_variant_list, + STATE(2056), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62520] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4045), 1, - anon_sym_RPAREN, - ACTIONS(4047), 1, - anon_sym_COMMA, - STATE(1958), 1, - aux_sym_tuple_type_repeat1, + [62755] = 5, + ACTIONS(4061), 1, + anon_sym_LPAREN, + ACTIONS(4063), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + anon_sym_LBRACK, + STATE(833), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62537] = 4, - ACTIONS(4049), 1, + [62772] = 4, + ACTIONS(4067), 1, anon_sym_DQUOTE, - STATE(1668), 1, + STATE(1676), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4023), 2, + ACTIONS(4003), 2, sym__string_content, sym_escape_sequence, - [62552] = 5, - ACTIONS(3950), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, - anon_sym_GT, - ACTIONS(4011), 1, - anon_sym_EQ, - STATE(1962), 1, - aux_sym_type_parameters_repeat1, + [62787] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62569] = 5, - ACTIONS(3320), 1, - anon_sym_PIPE, - ACTIONS(4051), 1, - anon_sym_SEMI, - ACTIONS(4053), 1, - anon_sym_COLON, - ACTIONS(4055), 1, - anon_sym_EQ, + ACTIONS(4039), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [62800] = 5, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + STATE(300), 1, + sym_declaration_list, + STATE(2114), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62586] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3962), 1, - anon_sym_COMMA, - ACTIONS(3964), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_arguments_repeat1, + [62817] = 5, + ACTIONS(4069), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_LBRACK, + STATE(1043), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62603] = 4, - ACTIONS(4057), 1, + [62834] = 4, + ACTIONS(4075), 1, anon_sym_DQUOTE, - STATE(1697), 1, + STATE(1676), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4059), 2, + ACTIONS(4003), 2, sym__string_content, sym_escape_sequence, - [62618] = 3, + [62849] = 5, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4077), 1, + anon_sym_RPAREN, + ACTIONS(4079), 1, + anon_sym_COMMA, + STATE(1953), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(4061), 2, + [62866] = 5, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4081), 1, anon_sym_RPAREN, + ACTIONS(4083), 1, anon_sym_COMMA, - [62631] = 4, - ACTIONS(3), 1, + STATE(1746), 1, + aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3), 2, sym_block_comment, - ACTIONS(898), 1, sym_line_comment, - ACTIONS(4063), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4065), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [62646] = 4, - ACTIONS(4067), 1, + [62883] = 4, + ACTIONS(4087), 1, anon_sym_COMMA, - STATE(1734), 1, + STATE(1711), 1, aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2823), 2, + ACTIONS(4085), 2, anon_sym_SEMI, anon_sym_LBRACE, - [62661] = 5, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - STATE(271), 1, - sym_field_declaration_list, - STATE(2153), 1, - sym_where_clause, + [62898] = 5, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4090), 1, + anon_sym_SEMI, + ACTIONS(4092), 1, + anon_sym_COLON, + ACTIONS(4094), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62678] = 5, - ACTIONS(3500), 1, + [62915] = 5, + ACTIONS(3514), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - STATE(844), 1, - sym_declaration_list, - STATE(2088), 1, + STATE(432), 1, + sym_field_declaration_list, + STATE(2136), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62695] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4069), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [62708] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [62932] = 5, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(1586), 1, + sym_parameters, + STATE(2151), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4071), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [62721] = 5, - ACTIONS(4073), 1, + [62949] = 5, + ACTIONS(4096), 1, anon_sym_LPAREN, - ACTIONS(4075), 1, + ACTIONS(4098), 1, anon_sym_LBRACE, - ACTIONS(4077), 1, + ACTIONS(4100), 1, anon_sym_LBRACK, - STATE(43), 1, + STATE(63), 1, sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62738] = 5, - ACTIONS(2302), 1, - anon_sym_LPAREN, - ACTIONS(3149), 1, - anon_sym_LT2, - STATE(873), 1, - sym_parameters, - STATE(1267), 1, - sym_type_arguments, + [62966] = 3, + ACTIONS(4102), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62755] = 5, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, - anon_sym_where, - STATE(902), 1, - sym_declaration_list, - STATE(2093), 1, - sym_where_clause, + ACTIONS(4104), 3, + sym_self, + sym_super, + sym_crate, + [62979] = 4, + ACTIONS(4108), 1, + anon_sym_COMMA, + STATE(1719), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62772] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + ACTIONS(4106), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(281), 1, - sym_declaration_list, - STATE(2127), 1, - sym_where_clause, + [62994] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62789] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4079), 1, + ACTIONS(4110), 3, anon_sym_RPAREN, - ACTIONS(4081), 1, anon_sym_COMMA, - STATE(1795), 1, - aux_sym_tuple_type_repeat1, + anon_sym_PIPE, + [63007] = 4, + ACTIONS(4112), 1, + anon_sym_COMMA, + STATE(1711), 1, + aux_sym_where_clause_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62806] = 5, - ACTIONS(3893), 1, - anon_sym_RPAREN, - ACTIONS(3897), 1, - anon_sym_COMMA, - ACTIONS(3899), 1, - anon_sym_PIPE, - STATE(1981), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(2825), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [63022] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62823] = 5, + ACTIONS(4114), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [63035] = 5, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(3583), 1, + ACTIONS(3608), 1, anon_sym_COLON, - STATE(1267), 1, + STATE(1273), 1, sym_type_arguments, - STATE(1955), 1, + STATE(1826), 1, sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62840] = 5, - ACTIONS(3320), 1, - anon_sym_PIPE, - ACTIONS(4083), 1, - anon_sym_SEMI, - ACTIONS(4085), 1, - anon_sym_COLON, - ACTIONS(4087), 1, - anon_sym_EQ, + [63052] = 5, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(4116), 1, + anon_sym_COMMA, + ACTIONS(4118), 1, + anon_sym_GT, + STATE(1878), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62857] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4089), 1, - anon_sym_RPAREN, - ACTIONS(4091), 1, - anon_sym_COMMA, - STATE(1761), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [63069] = 5, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(1583), 1, + sym_parameters, + STATE(2082), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62874] = 5, - ACTIONS(2191), 1, - anon_sym_PLUS, - ACTIONS(4093), 1, - anon_sym_COMMA, - ACTIONS(4095), 1, - anon_sym_GT, - STATE(1945), 1, - aux_sym_type_arguments_repeat1, + [63086] = 5, + ACTIONS(3502), 1, + anon_sym_LBRACE, + ACTIONS(3516), 1, + anon_sym_where, + STATE(413), 1, + sym_declaration_list, + STATE(2148), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62891] = 5, - ACTIONS(3759), 1, + [63103] = 4, + ACTIONS(4120), 1, + anon_sym_DQUOTE, + STATE(1708), 1, + aux_sym_string_literal_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4122), 2, + sym__string_content, + sym_escape_sequence, + [63118] = 5, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4093), 1, + ACTIONS(4116), 1, anon_sym_COMMA, - ACTIONS(4095), 1, + ACTIONS(4118), 1, anon_sym_GT, - STATE(1945), 1, + STATE(1878), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62908] = 5, - ACTIONS(3500), 1, + [63135] = 5, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - STATE(854), 1, + STATE(248), 1, sym_declaration_list, - STATE(1990), 1, + STATE(2084), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62925] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3753), 1, - anon_sym_LBRACE, - STATE(405), 1, - sym_enum_variant_list, - STATE(2103), 1, - sym_where_clause, + [63152] = 5, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(1531), 1, + sym_parameters, + STATE(2122), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62942] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3534), 1, + [63169] = 5, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(848), 1, - sym_field_declaration_list, - STATE(1993), 1, + ACTIONS(3516), 1, + anon_sym_where, + STATE(340), 1, + sym_declaration_list, + STATE(2044), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [62959] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [63186] = 5, + ACTIONS(4069), 1, + anon_sym_LPAREN, + ACTIONS(4071), 1, + anon_sym_LBRACE, + ACTIONS(4073), 1, + anon_sym_LBRACK, + STATE(1786), 1, + sym_token_tree, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4097), 3, + [63203] = 5, + ACTIONS(3918), 1, anon_sym_RPAREN, + ACTIONS(3922), 1, anon_sym_COMMA, + ACTIONS(3924), 1, anon_sym_PIPE, - [62972] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + STATE(1865), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4099), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [63220] = 5, + ACTIONS(3370), 1, anon_sym_PIPE, - [62985] = 5, - ACTIONS(4025), 1, - anon_sym_LPAREN, - ACTIONS(4027), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_LBRACK, - STATE(1865), 1, - sym_token_tree, + ACTIONS(4124), 1, + anon_sym_SEMI, + ACTIONS(4126), 1, + anon_sym_COLON, + ACTIONS(4128), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63002] = 4, - ACTIONS(3), 1, - sym_block_comment, - ACTIONS(898), 1, - sym_line_comment, - ACTIONS(4101), 1, - aux_sym_token_repetition_pattern_token1, - ACTIONS(4103), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63017] = 4, - ACTIONS(4107), 1, - anon_sym_COMMA, - STATE(1704), 1, - aux_sym_where_clause_repeat1, + [63237] = 5, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1273), 1, + sym_type_arguments, + STATE(1296), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4105), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63032] = 5, - ACTIONS(3500), 1, + [63254] = 5, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(3528), 1, + ACTIONS(3516), 1, anon_sym_where, - STATE(919), 1, + STATE(266), 1, sym_declaration_list, - STATE(2112), 1, + STATE(2144), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63049] = 5, + [63271] = 5, ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(3530), 1, + ACTIONS(3518), 1, anon_sym_LT, - STATE(1540), 1, + STATE(1528), 1, sym_parameters, - STATE(2114), 1, + STATE(2085), 1, sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63066] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(299), 1, - sym_declaration_list, - STATE(2165), 1, - sym_where_clause, + [63288] = 5, + ACTIONS(3153), 1, + anon_sym_LPAREN, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(1554), 1, + sym_parameters, + STATE(2069), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63083] = 4, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - STATE(1736), 1, - aux_sym_string_literal_repeat1, + [63305] = 5, + ACTIONS(3790), 1, + anon_sym_COMMA, + ACTIONS(3792), 1, + anon_sym_GT, + ACTIONS(4044), 1, + anon_sym_EQ, + STATE(1984), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4111), 2, - sym__string_content, - sym_escape_sequence, - [63098] = 5, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(3554), 1, + [63322] = 5, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(320), 1, - sym_declaration_list, - STATE(2104), 1, + ACTIONS(3516), 1, + anon_sym_where, + STATE(286), 1, + sym_field_declaration_list, + STATE(2112), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63115] = 5, - ACTIONS(3759), 1, + [63339] = 5, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(3889), 1, + ACTIONS(3914), 1, anon_sym_RPAREN, - ACTIONS(3891), 1, + ACTIONS(3916), 1, anon_sym_COMMA, - STATE(1959), 1, + STATE(1836), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63132] = 4, - ACTIONS(4115), 1, - anon_sym_COMMA, - STATE(1734), 1, - aux_sym_where_clause_repeat1, + [63356] = 5, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_enum_variant_list, + STATE(2163), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4113), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [63147] = 3, + [63373] = 3, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(3137), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(4118), 2, + ACTIONS(4130), 2, anon_sym_RPAREN, anon_sym_COMMA, - [63160] = 4, - ACTIONS(4120), 1, + [63386] = 4, + ACTIONS(4132), 1, anon_sym_DQUOTE, - STATE(1668), 1, + STATE(1704), 1, aux_sym_string_literal_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4023), 2, + ACTIONS(4134), 2, sym__string_content, sym_escape_sequence, - [63175] = 5, - ACTIONS(4122), 1, - anon_sym_LPAREN, - ACTIONS(4124), 1, - anon_sym_LBRACE, - ACTIONS(4126), 1, - anon_sym_LBRACK, - STATE(1326), 1, - sym_token_tree, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63192] = 5, - ACTIONS(3526), 1, - anon_sym_LBRACE, - ACTIONS(3528), 1, + [63401] = 5, + ACTIONS(3516), 1, anon_sym_where, - STATE(414), 1, - sym_field_declaration_list, - STATE(2124), 1, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_enum_variant_list, + STATE(2152), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63209] = 5, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4128), 1, - anon_sym_RBRACK, - ACTIONS(4130), 1, + [63418] = 5, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4136), 1, + anon_sym_RPAREN, + ACTIONS(4138), 1, anon_sym_COMMA, - STATE(1748), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1928), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63226] = 5, - ACTIONS(4132), 1, - anon_sym_LPAREN, - ACTIONS(4134), 1, - anon_sym_LBRACE, - ACTIONS(4136), 1, - anon_sym_LBRACK, - STATE(776), 1, - sym_token_tree, + [63435] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63243] = 5, - ACTIONS(3899), 1, + ACTIONS(4140), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(4138), 1, + [63448] = 4, + ACTIONS(2089), 1, anon_sym_RPAREN, - ACTIONS(4140), 1, + ACTIONS(4142), 1, anon_sym_COMMA, - STATE(1749), 1, - aux_sym_tuple_pattern_repeat1, + STATE(1788), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63260] = 5, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3901), 1, - anon_sym_RPAREN, - ACTIONS(3903), 1, + [63462] = 4, + ACTIONS(3105), 1, + anon_sym_RBRACE, + ACTIONS(4144), 1, anon_sym_COMMA, - STATE(1963), 1, - aux_sym_parameters_repeat1, + STATE(1870), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63277] = 2, + [63476] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4142), 3, + ACTIONS(4146), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63287] = 3, - ACTIONS(4146), 1, - anon_sym_COLON, + [63486] = 3, + ACTIONS(2185), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4144), 2, - anon_sym_RBRACE, + ACTIONS(4148), 2, anon_sym_COMMA, - [63299] = 4, - ACTIONS(4148), 1, - anon_sym_RPAREN, - ACTIONS(4150), 1, + anon_sym_GT, + [63498] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4148), 2, anon_sym_COMMA, - STATE(1745), 1, - aux_sym_meta_arguments_repeat1, + anon_sym_GT, + [63510] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63313] = 4, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4155), 1, - anon_sym_ref, - ACTIONS(4157), 1, - sym_mutable_specifier, + ACTIONS(4150), 2, + anon_sym_COMMA, + anon_sym_GT, + [63522] = 4, + ACTIONS(4152), 1, + anon_sym_RBRACE, + ACTIONS(4154), 1, + anon_sym_COMMA, + STATE(1752), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63327] = 2, + [63536] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4159), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63337] = 4, - ACTIONS(2238), 1, - anon_sym_RBRACK, - ACTIONS(4161), 1, + ACTIONS(4157), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1679), 1, - aux_sym_tuple_pattern_repeat1, + [63546] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63351] = 4, - ACTIONS(2187), 1, + ACTIONS(4159), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [63558] = 4, + ACTIONS(3914), 1, anon_sym_RPAREN, + ACTIONS(3916), 1, + anon_sym_COMMA, + STATE(1836), 1, + aux_sym_parameters_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [63572] = 3, ACTIONS(4163), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4161), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1679), 1, - aux_sym_tuple_pattern_repeat1, + [63584] = 4, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(4165), 1, + sym_mutable_specifier, + ACTIONS(4167), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63365] = 4, - ACTIONS(3763), 1, + [63598] = 4, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(4165), 1, + ACTIONS(4169), 1, anon_sym_SEMI, - STATE(333), 1, + STATE(446), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63379] = 4, - ACTIONS(4167), 1, - sym_identifier, - ACTIONS(4169), 1, - anon_sym_ref, - ACTIONS(4171), 1, - sym_mutable_specifier, + [63612] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63393] = 4, - ACTIONS(2191), 1, - anon_sym_PLUS, - ACTIONS(4173), 1, - sym_mutable_specifier, - ACTIONS(4175), 1, - sym_self, + ACTIONS(4171), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63622] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63407] = 4, - ACTIONS(3889), 1, + ACTIONS(4173), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [63632] = 4, + ACTIONS(768), 1, anon_sym_RPAREN, - ACTIONS(3891), 1, + ACTIONS(4175), 1, anon_sym_COMMA, - STATE(1959), 1, + STATE(1766), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63421] = 4, + [63646] = 4, ACTIONS(4177), 1, sym_identifier, ACTIONS(4179), 1, @@ -107755,332 +107947,252 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63435] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4183), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [63447] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [63660] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4185), 2, + ACTIONS(4183), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [63459] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4187), 1, - anon_sym_SEMI, - STATE(275), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63473] = 4, - ACTIONS(3230), 1, + [63670] = 3, + ACTIONS(3039), 1, anon_sym_COLON_COLON, - ACTIONS(3236), 1, - anon_sym_COLON, - STATE(1955), 1, - sym_trait_bounds, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63487] = 4, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(4189), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_type_parameters, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63501] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4191), 1, - anon_sym_SEMI, - ACTIONS(4193), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63515] = 4, - ACTIONS(2091), 1, + ACTIONS(3930), 2, anon_sym_RPAREN, - ACTIONS(4195), 1, anon_sym_COMMA, - STATE(1799), 1, - aux_sym_ordered_field_declaration_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63529] = 4, - ACTIONS(3763), 1, + [63682] = 4, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(4197), 1, + ACTIONS(4185), 1, anon_sym_SEMI, - STATE(293), 1, + STATE(341), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63543] = 4, - ACTIONS(4199), 1, - anon_sym_RBRACE, - ACTIONS(4201), 1, + [63696] = 4, + ACTIONS(4130), 1, + anon_sym_RPAREN, + ACTIONS(4187), 1, anon_sym_COMMA, - STATE(1952), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1766), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63557] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, + [63710] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4203), 2, - anon_sym_RBRACE, + ACTIONS(4130), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [63569] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4205), 1, - anon_sym_SEMI, - STATE(428), 1, - sym_block, + [63722] = 4, + ACTIONS(4190), 1, + sym_identifier, + ACTIONS(4192), 1, + anon_sym_ref, + ACTIONS(4194), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63583] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4207), 1, - anon_sym_SEMI, - ACTIONS(4209), 1, - anon_sym_EQ, + [63736] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63597] = 4, - ACTIONS(630), 1, + ACTIONS(2794), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [63746] = 4, + ACTIONS(612), 1, anon_sym_RBRACK, - ACTIONS(4211), 1, + ACTIONS(2841), 1, anon_sym_COMMA, - STATE(1768), 1, + STATE(1906), 1, aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63611] = 4, - ACTIONS(2925), 1, - anon_sym_RBRACK, - ACTIONS(4213), 1, + [63760] = 4, + ACTIONS(2228), 1, + anon_sym_RPAREN, + ACTIONS(4196), 1, anon_sym_COMMA, - STATE(1768), 1, - aux_sym_array_expression_repeat1, + STATE(1696), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63625] = 2, + [63774] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4216), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63635] = 3, - ACTIONS(3029), 1, - anon_sym_COLON_COLON, + ACTIONS(4198), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [63784] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4218), 2, - anon_sym_RPAREN, + ACTIONS(4085), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - [63647] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [63794] = 4, + ACTIONS(3518), 1, + anon_sym_LT, + ACTIONS(4200), 1, + anon_sym_EQ, + STATE(2386), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4061), 2, - anon_sym_RPAREN, + [63808] = 4, + ACTIONS(3524), 1, + anon_sym_RBRACE, + ACTIONS(4202), 1, anon_sym_COMMA, - [63659] = 3, - ACTIONS(3853), 1, - anon_sym_COLON_COLON, + STATE(1779), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63671] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, + [63822] = 3, + ACTIONS(4206), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4220), 2, + ACTIONS(4204), 2, anon_sym_RBRACE, anon_sym_COMMA, - [63683] = 4, - ACTIONS(4222), 1, + [63834] = 4, + ACTIONS(4208), 1, + anon_sym_RBRACE, + ACTIONS(4210), 1, anon_sym_COMMA, - ACTIONS(4224), 1, - anon_sym_GT, - STATE(1970), 1, - aux_sym_for_lifetimes_repeat1, + STATE(1777), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63697] = 3, - ACTIONS(4228), 1, - anon_sym_COLON, + [63848] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3857), 1, + sym_identifier, + STATE(2255), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4226), 2, + [63862] = 4, + ACTIONS(4213), 1, anon_sym_RBRACE, + ACTIONS(4215), 1, anon_sym_COMMA, - [63709] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4230), 1, - anon_sym_SEMI, - STATE(445), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63723] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(1054), 1, - sym_block, + STATE(1779), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63737] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [63876] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4232), 2, + ACTIONS(4218), 3, anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - [63749] = 4, - ACTIONS(4234), 1, - anon_sym_for, - ACTIONS(4236), 1, - anon_sym_loop, - ACTIONS(4238), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63763] = 3, - ACTIONS(3837), 1, - anon_sym_COLON_COLON, + [63886] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(3857), 1, + sym_identifier, + STATE(2268), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63775] = 4, - ACTIONS(2344), 1, - anon_sym_LBRACE, - ACTIONS(4240), 1, - anon_sym_COLON_COLON, - STATE(995), 1, - sym_field_initializer_list, + [63900] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4220), 1, + sym_identifier, + STATE(2255), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63789] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(4242), 1, - anon_sym_move, - STATE(1056), 1, - sym_block, + [63914] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4220), 1, + sym_identifier, + STATE(2268), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63803] = 2, + [63928] = 3, + ACTIONS(3920), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4244), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4222), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [63940] = 4, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, anon_sym_COMMA, - [63813] = 2, + STATE(1785), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4246), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [63823] = 4, - ACTIONS(4248), 1, - anon_sym_RBRACE, - ACTIONS(4250), 1, - anon_sym_COMMA, - STATE(1978), 1, - aux_sym_struct_pattern_repeat1, + [63954] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63837] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(4227), 3, anon_sym_SEMI, - STATE(351), 1, - sym_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + [63964] = 4, + ACTIONS(4229), 1, + anon_sym_for, + ACTIONS(4231), 1, + anon_sym_loop, + ACTIONS(4233), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63851] = 4, - ACTIONS(3962), 1, + [63978] = 4, + ACTIONS(4235), 1, + anon_sym_RPAREN, + ACTIONS(4237), 1, anon_sym_COMMA, - ACTIONS(3964), 1, - anon_sym_GT, - STATE(1984), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [63865] = 4, - ACTIONS(3530), 1, - anon_sym_LT, - ACTIONS(4254), 1, - anon_sym_EQ, - STATE(2357), 1, - sym_type_parameters, + STATE(1788), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63879] = 3, - ACTIONS(3843), 1, + [63992] = 3, + ACTIONS(3773), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, @@ -108088,1776 +108200,1817 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3147), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63891] = 4, - ACTIONS(3763), 1, + [64004] = 4, + ACTIONS(279), 1, anon_sym_LBRACE, - ACTIONS(4256), 1, - anon_sym_SEMI, - STATE(313), 1, + ACTIONS(3767), 1, + anon_sym_PLUS, + STATE(980), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63905] = 4, - ACTIONS(3023), 1, - anon_sym_RPAREN, - ACTIONS(4258), 1, - anon_sym_COMMA, - STATE(1745), 1, - aux_sym_meta_arguments_repeat1, + [64018] = 4, + ACTIONS(4240), 1, + sym_identifier, + ACTIONS(4242), 1, + anon_sym_ref, + ACTIONS(4244), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63919] = 4, - ACTIONS(3149), 1, + [64032] = 4, + ACTIONS(2310), 1, anon_sym_LT2, - ACTIONS(3432), 1, - anon_sym_LBRACE, - STATE(1267), 1, + ACTIONS(4246), 1, + sym_identifier, + STATE(846), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63933] = 4, - ACTIONS(3554), 1, - anon_sym_LBRACE, - ACTIONS(4260), 1, - anon_sym_SEMI, - STATE(256), 1, - sym_declaration_list, + [64046] = 4, + ACTIONS(383), 1, + anon_sym_RPAREN, + ACTIONS(4248), 1, + anon_sym_COMMA, + STATE(1794), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63947] = 4, - ACTIONS(4262), 1, - anon_sym_RBRACE, - ACTIONS(4264), 1, + [64060] = 4, + ACTIONS(2943), 1, + anon_sym_RPAREN, + ACTIONS(4250), 1, anon_sym_COMMA, - STATE(1982), 1, - aux_sym_struct_pattern_repeat1, + STATE(1794), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63961] = 4, - ACTIONS(2244), 1, - anon_sym_RPAREN, - ACTIONS(4266), 1, + [64074] = 4, + ACTIONS(3496), 1, + anon_sym_RBRACE, + ACTIONS(4253), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_tuple_type_repeat1, + STATE(1777), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63975] = 2, + [64088] = 4, + ACTIONS(4255), 1, + sym_identifier, + ACTIONS(4257), 1, + anon_sym_await, + ACTIONS(4259), 1, + sym_integer_literal, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4268), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [63985] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4270), 1, + [64102] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4261), 1, anon_sym_SEMI, - STATE(325), 1, - sym_block, + ACTIONS(4263), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [63999] = 2, + [64116] = 4, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(4265), 1, + anon_sym_GT, + STATE(2067), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4272), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [64009] = 4, - ACTIONS(4274), 1, - anon_sym_RPAREN, - ACTIONS(4276), 1, + [64130] = 4, + ACTIONS(4267), 1, anon_sym_COMMA, + ACTIONS(4270), 1, + anon_sym_GT, STATE(1799), 1, - aux_sym_ordered_field_declaration_list_repeat1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64023] = 4, - ACTIONS(3542), 1, - anon_sym_RBRACE, - ACTIONS(4279), 1, - anon_sym_COMMA, - STATE(1801), 1, - aux_sym_field_declaration_list_repeat1, + [64144] = 3, + ACTIONS(4274), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64037] = 4, - ACTIONS(4281), 1, + ACTIONS(4272), 2, anon_sym_RBRACE, - ACTIONS(4283), 1, anon_sym_COMMA, - STATE(1801), 1, - aux_sym_field_declaration_list_repeat1, + [64156] = 4, + ACTIONS(4276), 1, + anon_sym_for, + ACTIONS(4278), 1, + anon_sym_loop, + ACTIONS(4280), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64051] = 2, + [64170] = 3, + ACTIONS(3829), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4286), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [64061] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4288), 1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64182] = 4, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(4282), 1, anon_sym_SEMI, - STATE(376), 1, - sym_block, + STATE(2258), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64075] = 4, - ACTIONS(3550), 1, - anon_sym_GT, - ACTIONS(4290), 1, + [64196] = 4, + ACTIONS(3790), 1, anon_sym_COMMA, - STATE(1964), 1, + ACTIONS(3792), 1, + anon_sym_GT, + STATE(1984), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64089] = 4, - ACTIONS(3548), 1, - anon_sym_GT, - ACTIONS(4292), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, + [64210] = 4, + ACTIONS(2332), 1, + anon_sym_LBRACE, + ACTIONS(4284), 1, + anon_sym_COLON_COLON, + STATE(1018), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64103] = 2, + [64224] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4294), 3, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_COMMA, anon_sym_GT, - [64113] = 4, - ACTIONS(4296), 1, - anon_sym_RBRACE, - ACTIONS(4298), 1, + [64236] = 4, + ACTIONS(385), 1, + anon_sym_RPAREN, + ACTIONS(2863), 1, anon_sym_COMMA, - STATE(1908), 1, - aux_sym_field_initializer_list_repeat1, + STATE(1794), 1, + aux_sym_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64127] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [64250] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4288), 1, + sym_identifier, + STATE(2255), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64264] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4300), 2, + ACTIONS(4290), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [64139] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [64274] = 4, + ACTIONS(2219), 1, + anon_sym_RBRACK, + ACTIONS(4292), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4302), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64151] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4304), 1, - anon_sym_SEMI, - ACTIONS(4306), 1, - anon_sym_EQ, + [64288] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(4294), 1, + anon_sym_move, + STATE(970), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64165] = 3, - ACTIONS(4310), 1, - anon_sym_COLON, + [64302] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4288), 1, + sym_identifier, + STATE(2268), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64316] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4308), 2, + ACTIONS(4296), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [64177] = 4, - ACTIONS(3554), 1, + [64326] = 4, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(4312), 1, + ACTIONS(4298), 1, anon_sym_SEMI, - STATE(348), 1, - sym_declaration_list, + STATE(336), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64191] = 4, - ACTIONS(2095), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, - anon_sym_COMMA, - STATE(1799), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [64340] = 4, + ACTIONS(4300), 1, + sym_identifier, + ACTIONS(4302), 1, + anon_sym_ref, + ACTIONS(4304), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64205] = 4, - ACTIONS(4041), 1, - anon_sym_COMMA, - ACTIONS(4316), 1, - anon_sym_PIPE, - STATE(1905), 1, - aux_sym_closure_parameters_repeat1, + [64354] = 4, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(4306), 1, + anon_sym_SEMI, + STATE(2235), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64219] = 4, - ACTIONS(3236), 1, - anon_sym_COLON, - ACTIONS(3264), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_trait_bounds, + [64368] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64233] = 4, - ACTIONS(3759), 1, + ACTIONS(4308), 3, anon_sym_PLUS, - ACTIONS(4318), 1, + anon_sym_STAR, + anon_sym_QMARK, + [64378] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4310), 1, anon_sym_SEMI, - ACTIONS(4320), 1, - anon_sym_EQ, + STATE(342), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64247] = 4, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_EQ_GT, - ACTIONS(4324), 1, - anon_sym_if, + [64392] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64261] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + ACTIONS(2815), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64402] = 3, + ACTIONS(4314), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4326), 2, - anon_sym_COMMA, - anon_sym_GT, - [64273] = 4, - ACTIONS(4328), 1, + ACTIONS(4312), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(4331), 1, - anon_sym_GT, - STATE(1819), 1, - aux_sym_for_lifetimes_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64287] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4333), 1, - anon_sym_GT, - STATE(2159), 1, - sym_lifetime, + [64414] = 4, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(4316), 1, + anon_sym_SEMI, + STATE(2356), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64301] = 4, - ACTIONS(4335), 1, - anon_sym_for, - ACTIONS(4337), 1, - anon_sym_loop, - ACTIONS(4339), 1, - anon_sym_while, + [64428] = 3, + ACTIONS(4320), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64315] = 2, + ACTIONS(4318), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [64440] = 4, + ACTIONS(4322), 1, + anon_sym_RBRACE, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4341), 3, - anon_sym_SEMI, + [64454] = 4, + ACTIONS(3542), 1, anon_sym_RBRACE, + ACTIONS(4326), 1, anon_sym_COMMA, - [64325] = 4, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4346), 1, - anon_sym_GT, - STATE(1823), 1, - aux_sym_type_arguments_repeat1, + STATE(1779), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64339] = 4, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(4348), 1, - sym_identifier, - STATE(1743), 1, - sym_use_list, + [64468] = 4, + ACTIONS(3542), 1, + anon_sym_RBRACE, + ACTIONS(4326), 1, + anon_sym_COMMA, + STATE(1775), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64353] = 3, - ACTIONS(2191), 1, - anon_sym_PLUS, + [64482] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 2, + ACTIONS(4328), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [64365] = 3, - ACTIONS(3867), 1, - anon_sym_COLON_COLON, + [64492] = 4, + ACTIONS(4330), 1, + anon_sym_for, + ACTIONS(4332), 1, + anon_sym_loop, + ACTIONS(4334), 1, + anon_sym_while, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3147), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64377] = 4, - ACTIONS(3759), 1, + [64506] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4350), 1, + ACTIONS(4336), 1, anon_sym_SEMI, - ACTIONS(4352), 1, + ACTIONS(4338), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64391] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [64520] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4340), 1, + anon_sym_SEMI, + STATE(318), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 2, - anon_sym_COMMA, - anon_sym_GT, - [64403] = 4, - ACTIONS(2344), 1, + [64534] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4342), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4354), 1, + anon_sym_COMMA, + [64544] = 3, + ACTIONS(3865), 1, anon_sym_COLON_COLON, - STATE(995), 1, - sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64417] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64556] = 3, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4356), 2, - anon_sym_COMMA, - anon_sym_GT, - [64429] = 4, - ACTIONS(4358), 1, - anon_sym_RBRACE, - ACTIONS(4360), 1, - anon_sym_COMMA, - STATE(1936), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(3147), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [64568] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4344), 1, + anon_sym_SEMI, + STATE(353), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64443] = 4, - ACTIONS(4362), 1, - anon_sym_RBRACE, - ACTIONS(4364), 1, - anon_sym_COMMA, - STATE(1832), 1, - aux_sym_struct_pattern_repeat1, + [64582] = 4, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(4346), 1, + anon_sym_SEMI, + STATE(2344), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64457] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4367), 1, - anon_sym_as, - ACTIONS(4369), 1, - anon_sym_GT, + [64596] = 4, + ACTIONS(2332), 1, + anon_sym_LBRACE, + ACTIONS(4348), 1, + anon_sym_COLON_COLON, + STATE(1018), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64471] = 4, - ACTIONS(4041), 1, + [64610] = 4, + ACTIONS(770), 1, + anon_sym_RPAREN, + ACTIONS(3887), 1, anon_sym_COMMA, - ACTIONS(4371), 1, - anon_sym_PIPE, - STATE(1814), 1, - aux_sym_closure_parameters_repeat1, + STATE(1766), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64485] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, + [64624] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4373), 2, + ACTIONS(4350), 3, + anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [64497] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4375), 1, - sym_identifier, - STATE(2303), 1, - sym_type_arguments, + [64634] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64511] = 4, + ACTIONS(4352), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [64644] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4375), 1, - sym_identifier, - STATE(2304), 1, + ACTIONS(3430), 1, + anon_sym_LBRACE, + STATE(1273), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64525] = 3, - ACTIONS(4379), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4377), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [64537] = 4, - ACTIONS(740), 1, + [64658] = 4, + ACTIONS(638), 1, anon_sym_LBRACE, - ACTIONS(4381), 1, + ACTIONS(4354), 1, anon_sym_move, - STATE(244), 1, + STATE(220), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64551] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4383), 1, - anon_sym_SEMI, - STATE(448), 1, - sym_block, + [64672] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4356), 1, + sym_identifier, + STATE(2268), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64565] = 4, - ACTIONS(2310), 1, + [64686] = 4, + ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4385), 1, + ACTIONS(4356), 1, sym_identifier, - STATE(778), 1, + STATE(2255), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64579] = 4, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(4387), 1, - anon_sym_SEMI, - STATE(2366), 1, - sym_where_clause, + [64700] = 4, + ACTIONS(4116), 1, + anon_sym_COMMA, + ACTIONS(4118), 1, + anon_sym_GT, + STATE(1878), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64593] = 4, - ACTIONS(768), 1, + [64714] = 4, + ACTIONS(770), 1, anon_sym_RPAREN, - ACTIONS(4389), 1, + ACTIONS(3887), 1, anon_sym_COMMA, - STATE(1849), 1, + STATE(1761), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64607] = 4, - ACTIONS(4391), 1, - sym_identifier, - ACTIONS(4393), 1, - anon_sym_ref, - ACTIONS(4395), 1, - sym_mutable_specifier, + [64728] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4358), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64738] = 4, + ACTIONS(4360), 1, + anon_sym_RBRACE, + ACTIONS(4362), 1, + anon_sym_COMMA, + STATE(1962), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64621] = 4, + [64752] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4397), 1, + ACTIONS(4364), 1, sym_identifier, - STATE(2303), 1, + STATE(2268), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64635] = 4, + [64766] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4397), 1, + ACTIONS(4364), 1, sym_identifier, - STATE(2304), 1, + STATE(2255), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64649] = 2, + [64780] = 4, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3240), 1, + anon_sym_COLON, + STATE(1826), 1, + sym_trait_bounds, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64794] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4366), 1, + anon_sym_SEMI, + STATE(324), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4399), 3, + [64808] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4368), 1, anon_sym_SEMI, + ACTIONS(4370), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64822] = 4, + ACTIONS(2310), 1, + anon_sym_LT2, + ACTIONS(4246), 1, + sym_identifier, + STATE(764), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64836] = 4, + ACTIONS(4372), 1, anon_sym_RBRACE, + ACTIONS(4374), 1, anon_sym_COMMA, - [64659] = 3, - ACTIONS(3029), 1, - anon_sym_COLON_COLON, + STATE(1747), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3887), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [64671] = 4, - ACTIONS(4118), 1, - anon_sym_RPAREN, - ACTIONS(4401), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_parameters_repeat1, + [64850] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64685] = 4, - ACTIONS(4404), 1, - sym_identifier, - ACTIONS(4406), 1, - anon_sym_await, - ACTIONS(4408), 1, - sym_integer_literal, + ACTIONS(2802), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64860] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64699] = 4, + ACTIONS(2798), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [64870] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4410), 1, + ACTIONS(4376), 1, sym_identifier, - STATE(2303), 1, + STATE(2268), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64713] = 4, + [64884] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4410), 1, + ACTIONS(4376), 1, sym_identifier, - STATE(2304), 1, + STATE(2255), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64727] = 4, - ACTIONS(2310), 1, - anon_sym_LT2, - ACTIONS(4385), 1, - sym_identifier, - STATE(799), 1, - sym_type_arguments, + [64898] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64741] = 2, + ACTIONS(4378), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [64908] = 4, + ACTIONS(2087), 1, + anon_sym_RPAREN, + ACTIONS(4380), 1, + anon_sym_COMMA, + STATE(1788), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2815), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64751] = 3, - ACTIONS(3759), 1, + [64922] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4118), 2, + ACTIONS(4382), 2, anon_sym_RPAREN, anon_sym_COMMA, - [64763] = 2, + [64934] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4384), 1, + anon_sym_SEMI, + ACTIONS(4386), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [64948] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4412), 3, + ACTIONS(4388), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [64773] = 2, + [64958] = 4, + ACTIONS(3540), 1, + anon_sym_LBRACE, + ACTIONS(4390), 1, + anon_sym_SEMI, + STATE(814), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2811), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [64783] = 4, - ACTIONS(4414), 1, - anon_sym_for, - ACTIONS(4416), 1, - anon_sym_loop, - ACTIONS(4418), 1, - anon_sym_while, + [64972] = 4, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(4394), 1, + anon_sym_COMMA, + STATE(1917), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64797] = 2, + [64986] = 4, + ACTIONS(2236), 1, + anon_sym_RPAREN, + ACTIONS(4396), 1, + anon_sym_COMMA, + STATE(1696), 1, + aux_sym_tuple_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4113), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [64807] = 4, - ACTIONS(626), 1, - anon_sym_RBRACK, - ACTIONS(2819), 1, - anon_sym_COMMA, - STATE(1768), 1, - aux_sym_array_expression_repeat1, + [65000] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64821] = 4, - ACTIONS(3500), 1, - anon_sym_LBRACE, - ACTIONS(4420), 1, - anon_sym_SEMI, - STATE(929), 1, - sym_declaration_list, + ACTIONS(4398), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [65010] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64835] = 4, - ACTIONS(3556), 1, - anon_sym_RBRACE, - ACTIONS(4422), 1, + ACTIONS(4400), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_enum_variant_list_repeat2, + [65022] = 4, + ACTIONS(3230), 1, + anon_sym_COLON_COLON, + ACTIONS(3240), 1, + anon_sym_COLON, + STATE(1826), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64849] = 3, - ACTIONS(4426), 1, - anon_sym_EQ, + [65036] = 3, + ACTIONS(4404), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4424), 2, + ACTIONS(4402), 2, anon_sym_RBRACE, anon_sym_COMMA, - [64861] = 4, - ACTIONS(4428), 1, + [65048] = 4, + ACTIONS(4406), 1, anon_sym_RBRACE, - ACTIONS(4430), 1, + ACTIONS(4408), 1, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1870), 1, + aux_sym_use_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64875] = 2, + [65062] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4433), 3, + ACTIONS(4411), 3, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [64885] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4435), 1, - sym_identifier, - STATE(2303), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64899] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4435), 1, - sym_identifier, - STATE(2304), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64913] = 4, - ACTIONS(4437), 1, anon_sym_RBRACE, - ACTIONS(4439), 1, anon_sym_COMMA, - STATE(1871), 1, - aux_sym_use_list_repeat1, + [65072] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64927] = 4, - ACTIONS(375), 1, - anon_sym_RPAREN, - ACTIONS(4441), 1, + ACTIONS(4413), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1873), 1, - aux_sym_arguments_repeat1, + [65082] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4415), 1, + anon_sym_SEMI, + STATE(388), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64941] = 2, + [65096] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4443), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [64951] = 4, - ACTIONS(3107), 1, + ACTIONS(4417), 2, anon_sym_RBRACE, - ACTIONS(4445), 1, anon_sym_COMMA, - STATE(1922), 1, - aux_sym_use_list_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [64965] = 4, + [65108] = 4, ACTIONS(2310), 1, anon_sym_LT2, - ACTIONS(4447), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(1199), 1, + STATE(1204), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64979] = 4, - ACTIONS(2913), 1, - anon_sym_RPAREN, - ACTIONS(4449), 1, + [65122] = 4, + ACTIONS(3729), 1, + anon_sym_RBRACE, + ACTIONS(4421), 1, anon_sym_COMMA, - STATE(1873), 1, - aux_sym_arguments_repeat1, + STATE(1752), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [64993] = 2, + [65136] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4452), 3, - anon_sym_SEMI, + ACTIONS(4423), 2, anon_sym_RBRACE, anon_sym_COMMA, - [65003] = 2, + [65148] = 4, + ACTIONS(866), 1, + anon_sym_GT, + ACTIONS(4425), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4454), 3, - anon_sym_SEMI, + [65162] = 4, + ACTIONS(3705), 1, anon_sym_RBRACE, + ACTIONS(4427), 1, anon_sym_COMMA, - [65013] = 4, - ACTIONS(3757), 1, + STATE(1752), 1, + aux_sym_struct_pattern_repeat1, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [65176] = 4, + ACTIONS(3502), 1, anon_sym_LBRACE, - ACTIONS(4456), 1, + ACTIONS(4429), 1, anon_sym_SEMI, - STATE(800), 1, - sym_block, + STATE(350), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65027] = 4, - ACTIONS(3149), 1, + [65190] = 4, + ACTIONS(2310), 1, anon_sym_LT2, - ACTIONS(4458), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(2304), 1, + STATE(1166), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65041] = 4, - ACTIONS(2310), 1, + [65204] = 4, + ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4447), 1, + ACTIONS(4431), 1, sym_identifier, - STATE(1163), 1, + STATE(2268), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65055] = 2, + [65218] = 4, + ACTIONS(3149), 1, + anon_sym_LT2, + ACTIONS(4431), 1, + sym_identifier, + STATE(2255), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4460), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65065] = 2, + [65232] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4462), 3, - anon_sym_SEMI, + ACTIONS(4433), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [65242] = 4, + ACTIONS(4435), 1, anon_sym_RBRACE, + ACTIONS(4437), 1, anon_sym_COMMA, - [65075] = 2, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4464), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [65085] = 2, + [65256] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4466), 3, - anon_sym_SEMI, + ACTIONS(4440), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65268] = 4, + ACTIONS(4442), 1, anon_sym_RBRACE, + ACTIONS(4444), 1, anon_sym_COMMA, - [65095] = 4, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4468), 1, - anon_sym_SEMI, - STATE(804), 1, - sym_block, + STATE(1824), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65109] = 2, + [65282] = 4, + ACTIONS(4440), 1, + anon_sym_RPAREN, + ACTIONS(4446), 1, + anon_sym_COMMA, + STATE(1888), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4470), 3, - anon_sym_SEMI, + [65296] = 4, + ACTIONS(3532), 1, anon_sym_RBRACE, + ACTIONS(4449), 1, anon_sym_COMMA, - [65119] = 4, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4472), 1, - anon_sym_SEMI, - STATE(821), 1, - sym_block, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65133] = 2, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4474), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65143] = 4, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(4476), 1, - anon_sym_SEMI, - STATE(2306), 1, - sym_where_clause, + [65310] = 4, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + ACTIONS(4451), 1, + anon_sym_GT, + STATE(2067), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65157] = 4, + [65324] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4478), 1, + ACTIONS(4453), 1, sym_identifier, - STATE(2304), 1, + STATE(2255), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65171] = 4, - ACTIONS(3757), 1, + [65338] = 4, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(4480), 1, + ACTIONS(4455), 1, anon_sym_SEMI, - STATE(860), 1, + STATE(772), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65185] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4482), 1, - anon_sym_SEMI, - ACTIONS(4484), 1, - anon_sym_EQ, + [65352] = 4, + ACTIONS(4451), 1, + anon_sym_GT, + ACTIONS(4457), 1, + anon_sym_COMMA, + STATE(1799), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65199] = 4, - ACTIONS(3757), 1, + [65366] = 4, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(4486), 1, + ACTIONS(4459), 1, anon_sym_SEMI, - STATE(872), 1, + STATE(768), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65213] = 4, + [65380] = 4, ACTIONS(3149), 1, anon_sym_LT2, - ACTIONS(4478), 1, + ACTIONS(4453), 1, sym_identifier, - STATE(2303), 1, + STATE(2268), 1, sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65227] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3769), 1, - sym_identifier, - STATE(2304), 1, - sym_type_arguments, + [65394] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4461), 1, + anon_sym_SEMI, + STATE(367), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65241] = 4, - ACTIONS(3759), 1, + [65408] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4488), 1, + ACTIONS(4463), 1, anon_sym_SEMI, - ACTIONS(4490), 1, + ACTIONS(4465), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65255] = 2, + [65422] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4467), 1, + anon_sym_SEMI, + STATE(763), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4492), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65265] = 4, - ACTIONS(3950), 1, + [65436] = 4, + ACTIONS(3902), 1, anon_sym_COMMA, - ACTIONS(3952), 1, + ACTIONS(3904), 1, anon_sym_GT, - STATE(1962), 1, + STATE(1965), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65279] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(3769), 1, - sym_identifier, - STATE(2303), 1, - sym_type_arguments, + [65450] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4469), 1, + anon_sym_SEMI, + ACTIONS(4471), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65293] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4458), 1, - sym_identifier, - STATE(2303), 1, - sym_type_arguments, + [65464] = 4, + ACTIONS(4046), 1, + anon_sym_COMMA, + ACTIONS(4473), 1, + anon_sym_PIPE, + STATE(1923), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65307] = 4, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4494), 1, - anon_sym_SEMI, - STATE(890), 1, - sym_block, + [65478] = 4, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4475), 1, + anon_sym_EQ_GT, + ACTIONS(4477), 1, + anon_sym_if, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65321] = 4, - ACTIONS(3759), 1, + [65492] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4496), 1, - anon_sym_SEMI, - ACTIONS(4498), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65335] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, - ACTIONS(4500), 1, - anon_sym_SEMI, - STATE(251), 1, - sym_block, + ACTIONS(4479), 2, + anon_sym_COMMA, + anon_sym_GT, + [65504] = 4, + ACTIONS(632), 1, + anon_sym_RBRACK, + ACTIONS(4481), 1, + anon_sym_COMMA, + STATE(1906), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65349] = 4, - ACTIONS(3757), 1, + [65518] = 4, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(4502), 1, + ACTIONS(4483), 1, anon_sym_SEMI, - STATE(901), 1, + STATE(734), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65363] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3918), 1, + [65532] = 4, + ACTIONS(2975), 1, + anon_sym_RBRACK, + ACTIONS(4485), 1, anon_sym_COMMA, - STATE(1843), 1, - aux_sym_parameters_repeat1, + STATE(1906), 1, + aux_sym_array_expression_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65377] = 3, - ACTIONS(3895), 1, - anon_sym_COLON, + [65546] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4488), 1, + anon_sym_SEMI, + ACTIONS(4490), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4504), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [65389] = 4, - ACTIONS(4504), 1, - anon_sym_PIPE, - ACTIONS(4506), 1, - anon_sym_COMMA, - STATE(1905), 1, - aux_sym_closure_parameters_repeat1, + [65560] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4492), 1, + anon_sym_SEMI, + STATE(796), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65403] = 4, - ACTIONS(279), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - anon_sym_PLUS, - STATE(980), 1, - sym_block, + [65574] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65417] = 4, - ACTIONS(4509), 1, + ACTIONS(4494), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4511), 1, anon_sym_COMMA, - STATE(1907), 1, - aux_sym_field_initializer_list_repeat1, + [65584] = 3, + ACTIONS(4044), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65431] = 4, - ACTIONS(3504), 1, - anon_sym_RBRACE, - ACTIONS(4514), 1, + ACTIONS(3995), 2, anon_sym_COMMA, - STATE(1907), 1, - aux_sym_field_initializer_list_repeat1, + anon_sym_GT, + [65596] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4496), 1, + anon_sym_SEMI, + STATE(884), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65445] = 4, - ACTIONS(3528), 1, + [65610] = 4, + ACTIONS(3516), 1, anon_sym_where, - ACTIONS(4516), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - STATE(2410), 1, + STATE(2409), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65459] = 4, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4518), 1, - anon_sym_SEMI, - STATE(956), 1, - sym_block, + [65624] = 4, + ACTIONS(3995), 1, + anon_sym_GT, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65473] = 3, - ACTIONS(4522), 1, - anon_sym_COLON, + [65638] = 4, + ACTIONS(4503), 1, + anon_sym_RBRACE, + ACTIONS(4505), 1, + anon_sym_COMMA, + STATE(1879), 1, + aux_sym_struct_pattern_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4520), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [65485] = 2, + [65652] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4524), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4507), 2, anon_sym_COMMA, - [65495] = 2, + anon_sym_GT, + [65664] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4526), 3, + ACTIONS(4509), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - [65505] = 4, - ACTIONS(3544), 1, - anon_sym_RBRACE, - ACTIONS(4528), 1, + [65674] = 4, + ACTIONS(3005), 1, + anon_sym_RPAREN, + ACTIONS(4511), 1, anon_sym_COMMA, - STATE(1801), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1926), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65519] = 4, - ACTIONS(4530), 1, - anon_sym_RPAREN, - ACTIONS(4532), 1, - anon_sym_COMMA, - STATE(1791), 1, - aux_sym_meta_arguments_repeat1, + [65688] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4513), 1, + anon_sym_SEMI, + STATE(925), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65533] = 4, - ACTIONS(3759), 1, + [65702] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4534), 1, + ACTIONS(4515), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4517), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65547] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4538), 1, + [65716] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4519), 1, anon_sym_SEMI, - ACTIONS(4540), 1, - anon_sym_RBRACK, + STATE(377), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65561] = 4, - ACTIONS(3757), 1, + [65730] = 4, + ACTIONS(3765), 1, anon_sym_LBRACE, - ACTIONS(4542), 1, + ACTIONS(4521), 1, anon_sym_SEMI, - STATE(923), 1, + STATE(410), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65575] = 4, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(4544), 1, + [65744] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4523), 1, anon_sym_SEMI, - STATE(2308), 1, - sym_where_clause, + STATE(916), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65589] = 2, + [65758] = 4, + ACTIONS(4046), 1, + anon_sym_COMMA, + ACTIONS(4525), 1, + anon_sym_PIPE, + STATE(1785), 1, + aux_sym_closure_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4546), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [65599] = 4, - ACTIONS(766), 1, - anon_sym_RPAREN, - ACTIONS(4548), 1, - anon_sym_COMMA, - STATE(1849), 1, - aux_sym_parameters_repeat1, + [65772] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65613] = 4, - ACTIONS(4550), 1, + ACTIONS(4527), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [65782] = 4, + ACTIONS(3522), 1, anon_sym_RBRACE, - ACTIONS(4552), 1, + ACTIONS(4529), 1, anon_sym_COMMA, - STATE(1922), 1, - aux_sym_use_list_repeat1, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65627] = 4, - ACTIONS(3492), 1, - anon_sym_RBRACE, - ACTIONS(4555), 1, + [65796] = 4, + ACTIONS(4531), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1926), 1, + aux_sym_meta_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65641] = 2, + [65810] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4536), 1, + anon_sym_SEMI, + ACTIONS(4538), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4557), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [65824] = 4, + ACTIONS(2276), 1, + anon_sym_RPAREN, + ACTIONS(4540), 1, anon_sym_COMMA, - [65651] = 4, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(4559), 1, - anon_sym_SEMI, - STATE(2318), 1, - sym_where_clause, + STATE(1888), 1, + aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65665] = 4, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4561), 1, - anon_sym_SEMI, - ACTIONS(4563), 1, - anon_sym_EQ, + [65838] = 4, + ACTIONS(4148), 1, + anon_sym_GT, + ACTIONS(4542), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65679] = 4, - ACTIONS(3500), 1, + [65852] = 4, + ACTIONS(3540), 1, anon_sym_LBRACE, - ACTIONS(4565), 1, + ACTIONS(4545), 1, anon_sym_SEMI, - STATE(833), 1, + STATE(936), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65693] = 4, - ACTIONS(381), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, + [65866] = 4, + ACTIONS(4547), 1, anon_sym_COMMA, - STATE(1873), 1, - aux_sym_arguments_repeat1, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [65707] = 2, + ACTIONS(4549), 1, + anon_sym_GT, + STATE(1893), 1, + aux_sym_for_lifetimes_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2802), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [65717] = 4, - ACTIONS(3757), 1, + [65880] = 4, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(4567), 1, + ACTIONS(4551), 1, anon_sym_SEMI, - STATE(869), 1, + STATE(880), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65731] = 4, - ACTIONS(3538), 1, - anon_sym_RBRACE, - ACTIONS(4569), 1, - anon_sym_COMMA, - STATE(1800), 1, - aux_sym_field_declaration_list_repeat1, + [65894] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65745] = 4, - ACTIONS(3516), 1, - anon_sym_RBRACE, - ACTIONS(4571), 1, + ACTIONS(4553), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - STATE(1914), 1, - aux_sym_field_declaration_list_repeat1, + [65904] = 4, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(4555), 1, + anon_sym_COMMA, + STATE(1766), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65759] = 4, - ACTIONS(3516), 1, + [65918] = 4, + ACTIONS(3506), 1, anon_sym_RBRACE, - ACTIONS(4571), 1, + ACTIONS(4557), 1, anon_sym_COMMA, - STATE(1801), 1, - aux_sym_field_declaration_list_repeat1, + STATE(1779), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65773] = 2, + [65932] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4559), 1, + anon_sym_SEMI, + ACTIONS(4561), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2790), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [65783] = 4, - ACTIONS(3759), 1, + [65946] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4573), 1, - anon_sym_SEMI, - ACTIONS(4575), 1, - anon_sym_EQ, + ACTIONS(4563), 1, + anon_sym_as, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65797] = 4, - ACTIONS(3538), 1, - anon_sym_RBRACE, + [65960] = 3, ACTIONS(4569), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4567), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(1801), 1, - aux_sym_field_declaration_list_repeat1, + [65972] = 4, + ACTIONS(3516), 1, + anon_sym_where, + ACTIONS(4571), 1, + anon_sym_SEMI, + STATE(2308), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65811] = 4, - ACTIONS(3759), 1, + [65986] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4577), 1, + ACTIONS(4573), 1, anon_sym_SEMI, - ACTIONS(4579), 1, + ACTIONS(4575), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65825] = 4, - ACTIONS(3759), 1, + [66000] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4581), 1, + ACTIONS(4577), 1, anon_sym_SEMI, - ACTIONS(4583), 1, + ACTIONS(4579), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65839] = 4, - ACTIONS(2097), 1, - anon_sym_RPAREN, - ACTIONS(4585), 1, - anon_sym_COMMA, - STATE(1799), 1, - aux_sym_ordered_field_declaration_list_repeat1, + [66014] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(832), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65853] = 4, - ACTIONS(4587), 1, + [66028] = 4, + ACTIONS(4583), 1, anon_sym_RBRACE, - ACTIONS(4589), 1, + ACTIONS(4585), 1, anon_sym_COMMA, - STATE(1967), 1, + STATE(1975), 1, aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65867] = 4, - ACTIONS(3759), 1, + [66042] = 4, + ACTIONS(279), 1, + anon_sym_LBRACE, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4591), 1, - anon_sym_SEMI, - ACTIONS(4593), 1, - anon_sym_EQ, + STATE(1058), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65881] = 4, - ACTIONS(3809), 1, - anon_sym_COMMA, - ACTIONS(3811), 1, - anon_sym_GT, - STATE(1805), 1, - aux_sym_type_parameters_repeat1, + [66056] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65895] = 4, - ACTIONS(3759), 1, + ACTIONS(4587), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66068] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4595), 1, + ACTIONS(4589), 1, anon_sym_SEMI, - ACTIONS(4597), 1, + ACTIONS(4591), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65909] = 4, - ACTIONS(3528), 1, - anon_sym_where, - ACTIONS(4599), 1, - anon_sym_SEMI, - STATE(2204), 1, - sym_where_clause, + [66082] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65923] = 4, - ACTIONS(870), 1, + ACTIONS(4593), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_GT, - ACTIONS(4601), 1, + [66092] = 4, + ACTIONS(4595), 1, + anon_sym_RBRACE, + ACTIONS(4597), 1, anon_sym_COMMA, - STATE(1823), 1, - aux_sym_type_arguments_repeat1, + STATE(1795), 1, + aux_sym_field_initializer_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65937] = 4, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4603), 1, - anon_sym_SEMI, - STATE(789), 1, - sym_block, + [66106] = 4, + ACTIONS(3504), 1, + anon_sym_RBRACE, + ACTIONS(4599), 1, + anon_sym_COMMA, + STATE(1925), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65951] = 4, - ACTIONS(3901), 1, + [66120] = 4, + ACTIONS(3910), 1, anon_sym_RPAREN, - ACTIONS(3903), 1, + ACTIONS(3912), 1, anon_sym_COMMA, - STATE(1963), 1, + STATE(1970), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65965] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [66134] = 4, + ACTIONS(3504), 1, + anon_sym_RBRACE, + ACTIONS(4599), 1, + anon_sym_COMMA, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4605), 2, - anon_sym_COMMA, - anon_sym_GT, - [65977] = 4, - ACTIONS(758), 1, - anon_sym_RPAREN, - ACTIONS(3960), 1, + [66148] = 4, + ACTIONS(3566), 1, + anon_sym_RBRACE, + ACTIONS(4601), 1, anon_sym_COMMA, - STATE(1921), 1, - aux_sym_parameters_repeat1, + STATE(1889), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [65991] = 3, - ACTIONS(4609), 1, - anon_sym_EQ, + [66162] = 4, + ACTIONS(2081), 1, + anon_sym_RPAREN, + ACTIONS(4603), 1, + anon_sym_COMMA, + STATE(1788), 1, + aux_sym_ordered_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4607), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66003] = 4, - ACTIONS(3757), 1, + [66176] = 4, + ACTIONS(3755), 1, anon_sym_LBRACE, - ACTIONS(4611), 1, + ACTIONS(4605), 1, anon_sym_SEMI, - STATE(793), 1, + STATE(953), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66017] = 4, - ACTIONS(3564), 1, - anon_sym_RBRACE, - ACTIONS(4613), 1, - anon_sym_COMMA, - STATE(1864), 1, - aux_sym_enum_variant_list_repeat2, + [66190] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4607), 1, + anon_sym_SEMI, + ACTIONS(4609), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66031] = 4, - ACTIONS(3564), 1, - anon_sym_RBRACE, - ACTIONS(4613), 1, - anon_sym_COMMA, - STATE(1862), 1, - aux_sym_enum_variant_list_repeat2, + [66204] = 4, + ACTIONS(3765), 1, + anon_sym_LBRACE, + ACTIONS(4611), 1, + anon_sym_SEMI, + STATE(394), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66045] = 4, - ACTIONS(4093), 1, + [66218] = 4, + ACTIONS(3974), 1, anon_sym_COMMA, - ACTIONS(4095), 1, + ACTIONS(3976), 1, anon_sym_GT, - STATE(1945), 1, + STATE(1960), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66059] = 2, + [66232] = 4, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4613), 1, + anon_sym_SEMI, + ACTIONS(4615), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4615), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - [66069] = 2, + [66246] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4617), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4617), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [66079] = 2, + [66258] = 4, + ACTIONS(870), 1, + anon_sym_GT, + ACTIONS(4619), 1, + anon_sym_COMMA, + STATE(1929), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2794), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66089] = 4, - ACTIONS(2250), 1, + [66272] = 4, + ACTIONS(2268), 1, anon_sym_RPAREN, - ACTIONS(4619), 1, + ACTIONS(4621), 1, anon_sym_COMMA, - STATE(1972), 1, + STATE(1888), 1, aux_sym_tuple_type_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66103] = 4, - ACTIONS(764), 1, - anon_sym_RPAREN, - ACTIONS(3918), 1, + [66286] = 4, + ACTIONS(3566), 1, + anon_sym_RBRACE, + ACTIONS(4601), 1, anon_sym_COMMA, - STATE(1849), 1, - aux_sym_parameters_repeat1, + STATE(1885), 1, + aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66117] = 4, - ACTIONS(3512), 1, + [66300] = 4, + ACTIONS(3564), 1, anon_sym_GT, - ACTIONS(4621), 1, + ACTIONS(4623), 1, anon_sym_COMMA, - STATE(1964), 1, + STATE(1913), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66131] = 2, + [66314] = 4, + ACTIONS(3572), 1, + anon_sym_GT, + ACTIONS(4625), 1, + anon_sym_COMMA, + STATE(1913), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2798), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_where, - [66141] = 4, - ACTIONS(3488), 1, + [66328] = 4, + ACTIONS(3568), 1, anon_sym_GT, - ACTIONS(4623), 1, + ACTIONS(4627), 1, anon_sym_COMMA, - STATE(1964), 1, + STATE(1913), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66155] = 4, + [66342] = 4, + ACTIONS(3755), 1, + anon_sym_LBRACE, + ACTIONS(4629), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_block, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66356] = 4, ACTIONS(758), 1, anon_sym_RPAREN, - ACTIONS(3960), 1, + ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1849), 1, + STATE(1934), 1, aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66169] = 4, - ACTIONS(3970), 1, - anon_sym_GT, - ACTIONS(4625), 1, - anon_sym_COMMA, - STATE(1964), 1, - aux_sym_type_parameters_repeat1, + [66370] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66183] = 3, - ACTIONS(4011), 1, - anon_sym_EQ, + ACTIONS(2790), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [66380] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3970), 2, - anon_sym_COMMA, - anon_sym_GT, - [66195] = 4, - ACTIONS(3494), 1, + ACTIONS(4631), 3, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(4628), 1, anon_sym_COMMA, - STATE(1923), 1, - aux_sym_enum_variant_list_repeat2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66209] = 4, - ACTIONS(3494), 1, - anon_sym_RBRACE, - ACTIONS(4628), 1, + [66390] = 4, + ACTIONS(758), 1, + anon_sym_RPAREN, + ACTIONS(3934), 1, anon_sym_COMMA, - STATE(1864), 1, - aux_sym_enum_variant_list_repeat2, + STATE(1766), 1, + aux_sym_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66223] = 4, - ACTIONS(3759), 1, + [66404] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4630), 1, + ACTIONS(4633), 1, anon_sym_SEMI, - ACTIONS(4632), 1, + ACTIONS(4635), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66237] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [66418] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4634), 2, - anon_sym_COMMA, - anon_sym_GT, - [66249] = 4, - ACTIONS(4636), 1, - anon_sym_COMMA, - ACTIONS(4638), 1, - anon_sym_GT, - STATE(1819), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(2806), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_where, + [66428] = 4, + ACTIONS(3089), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + sym_identifier, + STATE(1871), 1, + sym_use_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66263] = 4, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - ACTIONS(4638), 1, - anon_sym_GT, - STATE(2159), 1, - sym_lifetime, + [66442] = 4, + ACTIONS(3550), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, + anon_sym_COMMA, + STATE(1935), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66277] = 4, - ACTIONS(4640), 1, - anon_sym_RPAREN, - ACTIONS(4642), 1, + [66456] = 4, + ACTIONS(3550), 1, + anon_sym_RBRACE, + ACTIONS(4639), 1, anon_sym_COMMA, - STATE(1972), 1, - aux_sym_tuple_type_repeat1, + STATE(1779), 1, + aux_sym_enum_variant_list_repeat2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66291] = 3, - ACTIONS(3759), 1, + [66470] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, + ACTIONS(4641), 1, + anon_sym_SEMI, + ACTIONS(4643), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4640), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66303] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4645), 1, - sym_identifier, - STATE(2303), 1, - sym_type_arguments, + [66484] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66317] = 4, - ACTIONS(3759), 1, + ACTIONS(4645), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [66494] = 4, + ACTIONS(3767), 1, anon_sym_PLUS, ACTIONS(4647), 1, anon_sym_SEMI, @@ -109866,246 +110019,242 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66331] = 4, - ACTIONS(3528), 1, - anon_sym_where, + [66508] = 4, + ACTIONS(3502), 1, + anon_sym_LBRACE, ACTIONS(4651), 1, anon_sym_SEMI, - STATE(2359), 1, - sym_where_clause, + STATE(427), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66345] = 4, + [66522] = 4, ACTIONS(4653), 1, anon_sym_RBRACE, ACTIONS(4655), 1, anon_sym_COMMA, - STATE(1933), 1, + STATE(1951), 1, aux_sym_field_declaration_list_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66359] = 4, - ACTIONS(3723), 1, - anon_sym_RBRACE, - ACTIONS(4657), 1, - anon_sym_COMMA, - STATE(1832), 1, - aux_sym_struct_pattern_repeat1, + [66536] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66373] = 4, - ACTIONS(3528), 1, + ACTIONS(4657), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66548] = 4, + ACTIONS(3516), 1, anon_sym_where, ACTIONS(4659), 1, anon_sym_SEMI, - STATE(2368), 1, + STATE(2363), 1, sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66387] = 4, - ACTIONS(3149), 1, - anon_sym_LT2, - ACTIONS(4645), 1, - sym_identifier, - STATE(2304), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66401] = 4, - ACTIONS(2185), 1, - anon_sym_RPAREN, + [66562] = 4, + ACTIONS(3516), 1, + anon_sym_where, ACTIONS(4661), 1, - anon_sym_COMMA, - STATE(1679), 1, - aux_sym_tuple_pattern_repeat1, + anon_sym_SEMI, + STATE(2354), 1, + sym_where_clause, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66415] = 4, - ACTIONS(3725), 1, - anon_sym_RBRACE, + [66576] = 4, + ACTIONS(3570), 1, + anon_sym_GT, ACTIONS(4663), 1, anon_sym_COMMA, - STATE(1832), 1, - aux_sym_struct_pattern_repeat1, + STATE(1913), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66429] = 4, - ACTIONS(3763), 1, - anon_sym_LBRACE, + [66590] = 4, + ACTIONS(3518), 1, + anon_sym_LT, ACTIONS(4665), 1, - anon_sym_SEMI, - STATE(450), 1, - sym_block, + anon_sym_EQ, + STATE(2318), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66443] = 4, - ACTIONS(868), 1, - anon_sym_GT, - ACTIONS(4667), 1, - anon_sym_COMMA, - STATE(1823), 1, - aux_sym_type_arguments_repeat1, + [66604] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66457] = 3, - ACTIONS(3500), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_declaration_list, + ACTIONS(3970), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66616] = 3, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66468] = 3, - ACTIONS(740), 1, + ACTIONS(4667), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66628] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(242), 1, - sym_block, + STATE(893), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66479] = 2, + [66639] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, ACTIONS(4669), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [66488] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4671), 2, - sym_identifier, - sym_metavariable, - [66497] = 3, - ACTIONS(3534), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [66508] = 3, - ACTIONS(3500), 1, + anon_sym_const, + sym_mutable_specifier, + [66648] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(754), 1, + STATE(841), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66519] = 3, - ACTIONS(3500), 1, + [66659] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(753), 1, + STATE(837), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66530] = 3, - ACTIONS(3759), 1, + [66670] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4673), 1, + ACTIONS(4671), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66541] = 3, - ACTIONS(3534), 1, + [66681] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(750), 1, + STATE(831), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66552] = 3, - ACTIONS(3500), 1, + [66692] = 2, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + ACTIONS(4152), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [66701] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(748), 1, + STATE(820), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66563] = 3, - ACTIONS(3500), 1, + [66712] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(747), 1, + STATE(816), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66574] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_block, + [66723] = 3, + ACTIONS(3920), 1, + anon_sym_COLON, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66585] = 3, - ACTIONS(4675), 1, - sym_identifier, - ACTIONS(4677), 1, - sym_mutable_specifier, + [66734] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66596] = 3, - ACTIONS(3895), 1, - anon_sym_COLON, - ACTIONS(3899), 1, - anon_sym_PIPE, + ACTIONS(3930), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66743] = 3, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(407), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66607] = 3, - ACTIONS(3777), 1, + [66754] = 3, + ACTIONS(4673), 1, + sym_identifier, + ACTIONS(4675), 1, + sym_mutable_specifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66765] = 3, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(738), 1, + STATE(795), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66618] = 3, - ACTIONS(3534), 1, + [66776] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(735), 1, + STATE(787), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66629] = 3, - ACTIONS(3534), 1, + [66787] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4677), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [66798] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(731), 1, + STATE(781), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66640] = 2, + [66809] = 3, + ACTIONS(4679), 1, + sym_identifier, + ACTIONS(4681), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4679), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [66649] = 3, - ACTIONS(3747), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 1, - anon_sym_RPAREN, + [66820] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66660] = 3, + ACTIONS(4130), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66829] = 3, ACTIONS(4683), 1, anon_sym_SEMI, ACTIONS(4685), 1, @@ -110113,47 +110262,45 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66671] = 3, - ACTIONS(3751), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 1, - anon_sym_RPAREN, + [66840] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66682] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(340), 1, - sym_declaration_list, + ACTIONS(4687), 2, + sym_identifier, + sym_metavariable, + [66849] = 3, + ACTIONS(4177), 1, + sym_identifier, + ACTIONS(4181), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66693] = 3, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - ACTIONS(4687), 1, - anon_sym_RPAREN, + [66860] = 3, + ACTIONS(15), 1, + anon_sym_LBRACE, + STATE(44), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66704] = 3, - ACTIONS(4153), 1, - sym_identifier, - ACTIONS(4157), 1, - sym_mutable_specifier, + [66871] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66715] = 3, - ACTIONS(3899), 1, + ACTIONS(3970), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66880] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, ACTIONS(4689), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66726] = 3, + [66891] = 3, ACTIONS(4691), 1, anon_sym_SEMI, ACTIONS(4693), 1, @@ -110161,2744 +110308,2747 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66737] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(3970), 2, - anon_sym_COMMA, - anon_sym_GT, - [66746] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, + [66902] = 3, + ACTIONS(3719), 1, + anon_sym_COLON_COLON, ACTIONS(4695), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66757] = 2, + [66913] = 3, + ACTIONS(3723), 1, + anon_sym_COLON_COLON, + ACTIONS(4695), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3839), 2, + [66924] = 3, + ACTIONS(3727), 1, + anon_sym_COLON_COLON, + ACTIONS(4695), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [66766] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(768), 1, - sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66777] = 3, - ACTIONS(3500), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_declaration_list, + [66935] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66788] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1286), 1, - sym_parameters, + [66946] = 3, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + ACTIONS(4699), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66799] = 3, - ACTIONS(3899), 1, + [66957] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(4697), 1, + ACTIONS(4701), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66810] = 3, - ACTIONS(3899), 1, + [66968] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(4699), 1, + ACTIONS(4703), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66821] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4701), 1, - anon_sym_in, + [66979] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66832] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4703), 1, - anon_sym_EQ, + ACTIONS(4705), 2, + sym_identifier, + sym_metavariable, + [66988] = 3, + ACTIONS(2302), 1, + anon_sym_LPAREN, + STATE(888), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66843] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4705), 1, - anon_sym_RBRACE, + [66999] = 3, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66854] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, + [67010] = 3, + ACTIONS(3302), 1, + anon_sym_COLON_COLON, ACTIONS(4707), 1, - anon_sym_RPAREN, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66865] = 3, - ACTIONS(4709), 1, - anon_sym_SEMI, - ACTIONS(4711), 1, - anon_sym_as, + [67021] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66876] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_declaration_list, + ACTIONS(4709), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67030] = 3, + ACTIONS(3294), 1, + anon_sym_COLON_COLON, + ACTIONS(4707), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66887] = 3, - ACTIONS(3899), 1, + [67041] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(4713), 1, + ACTIONS(4711), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66898] = 3, - ACTIONS(3753), 1, - anon_sym_LBRACE, - STATE(319), 1, - sym_enum_variant_list, + [67052] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4713), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67063] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4715), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66909] = 3, - ACTIONS(3583), 1, + [67074] = 3, + ACTIONS(2676), 1, anon_sym_COLON, - STATE(1955), 1, - sym_trait_bounds, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66920] = 3, - ACTIONS(3777), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_enum_variant_list, + [67085] = 3, + ACTIONS(3701), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66931] = 2, + [67096] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4715), 2, + ACTIONS(4717), 2, sym_identifier, sym_metavariable, - [66940] = 3, - ACTIONS(3671), 1, - anon_sym_COLON, - ACTIONS(3759), 1, - anon_sym_PLUS, + [67105] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4719), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66951] = 3, - ACTIONS(3500), 1, + [67116] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(900), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66962] = 3, - ACTIONS(3530), 1, - anon_sym_LT, - STATE(659), 1, - sym_type_parameters, + [67127] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66973] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4717), 1, - anon_sym_EQ, + ACTIONS(4213), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67136] = 3, + ACTIONS(2566), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66984] = 3, - ACTIONS(3500), 1, + [67147] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(811), 1, + STATE(732), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [66995] = 3, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(2159), 1, - sym_lifetime, + [67158] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4721), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67006] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4719), 1, - anon_sym_in, + [67169] = 3, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1301), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67017] = 3, - ACTIONS(15), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym_block, + [67180] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4723), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67028] = 3, - ACTIONS(3695), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, - anon_sym_SEMI, + [67191] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67039] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(286), 1, - sym_declaration_list, + ACTIONS(4725), 2, + sym_identifier, + sym_metavariable, + [67200] = 3, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67050] = 3, - ACTIONS(3526), 1, + [67211] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(308), 1, - sym_field_declaration_list, + STATE(402), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67061] = 3, - ACTIONS(3554), 1, + [67222] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(267), 1, + STATE(403), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67072] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(290), 1, - sym_declaration_list, + [67233] = 3, + ACTIONS(2310), 1, + anon_sym_LT2, + STATE(1003), 1, + sym_type_arguments, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67083] = 3, - ACTIONS(3500), 1, + [67244] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(830), 1, + STATE(756), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67094] = 3, - ACTIONS(3759), 1, + [67255] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4721), 1, + ACTIONS(4727), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67105] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(302), 1, - sym_declaration_list, + [67266] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67116] = 3, - ACTIONS(3500), 1, + ACTIONS(4729), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [67275] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(839), 1, + STATE(759), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67127] = 3, - ACTIONS(3899), 1, + [67286] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, - ACTIONS(4723), 1, + ACTIONS(4731), 1, anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67138] = 3, - ACTIONS(3500), 1, + [67297] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(842), 1, + STATE(762), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67149] = 3, - ACTIONS(3500), 1, + [67308] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(843), 1, + STATE(771), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67160] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(300), 1, - sym_declaration_list, + [67319] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4733), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67171] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4725), 1, - anon_sym_SEMI, + [67330] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4735), 1, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67182] = 2, + [67341] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4727), 2, - sym_identifier, - sym_metavariable, - [67191] = 3, - ACTIONS(3554), 1, + ACTIONS(4222), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [67350] = 3, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(291), 1, - sym_declaration_list, + STATE(946), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67202] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_block, + [67361] = 3, + ACTIONS(4737), 1, + anon_sym_LBRACK, + ACTIONS(4739), 1, + anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67213] = 3, - ACTIONS(3689), 1, - anon_sym_RBRACE, - ACTIONS(4691), 1, - anon_sym_SEMI, + [67372] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67224] = 3, - ACTIONS(3777), 1, + ACTIONS(4741), 2, + sym_identifier, + sym_metavariable, + [67381] = 3, + ACTIONS(3833), 1, anon_sym_LBRACE, - STATE(879), 1, + STATE(848), 1, sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67235] = 3, - ACTIONS(2664), 1, - anon_sym_COLON, - ACTIONS(3759), 1, - anon_sym_PLUS, + [67392] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, + ACTIONS(4743), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67246] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_field_declaration_list, + [67403] = 3, + ACTIONS(2516), 1, + anon_sym_COLON, + ACTIONS(3767), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67257] = 3, - ACTIONS(3534), 1, + [67414] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(887), 1, + STATE(856), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67268] = 3, - ACTIONS(3759), 1, + [67425] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4729), 1, + ACTIONS(4745), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67279] = 3, - ACTIONS(3534), 1, + [67436] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(897), 1, + STATE(859), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67290] = 3, - ACTIONS(3500), 1, + [67447] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(899), 1, + STATE(861), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67301] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(285), 1, - sym_declaration_list, + [67458] = 3, + ACTIONS(3735), 1, + anon_sym_RBRACE, + ACTIONS(4691), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67312] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(284), 1, - sym_declaration_list, + [67469] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67323] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4731), 1, - anon_sym_in, + ACTIONS(4270), 2, + anon_sym_COMMA, + anon_sym_GT, + [67478] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(383), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67334] = 3, - ACTIONS(3713), 1, - anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, + [67489] = 3, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1544), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67345] = 3, - ACTIONS(4733), 1, - anon_sym_LBRACK, - ACTIONS(4735), 1, - anon_sym_BANG, + [67500] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67356] = 2, + [67511] = 3, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1564), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4550), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67365] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_field_declaration_list, + [67522] = 3, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(1931), 1, + sym_lifetime, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67376] = 2, + [67533] = 3, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(277), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4737), 2, - sym_identifier, - sym_metavariable, - [67385] = 2, + [67544] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4061), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67394] = 3, - ACTIONS(4739), 1, + [67555] = 3, + ACTIONS(4747), 1, anon_sym_LBRACK, - ACTIONS(4741), 1, + ACTIONS(4749), 1, anon_sym_BANG, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67405] = 3, + [67566] = 3, ACTIONS(85), 1, anon_sym_PIPE, - STATE(87), 1, + STATE(77), 1, sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67416] = 3, - ACTIONS(4743), 1, - anon_sym_SEMI, - ACTIONS(4745), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67427] = 2, + [67577] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4747), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67436] = 3, - ACTIONS(2071), 1, - anon_sym_SQUOTE, - STATE(1774), 1, - sym_lifetime, + [67588] = 3, + ACTIONS(3514), 1, + anon_sym_LBRACE, + STATE(282), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67447] = 2, + [67599] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4749), 2, - sym_identifier, - sym_metavariable, - [67456] = 3, - ACTIONS(3500), 1, + ACTIONS(4531), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67608] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(890), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67467] = 3, - ACTIONS(2634), 1, - anon_sym_COLON, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67478] = 3, - ACTIONS(3753), 1, + [67619] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(403), 1, - sym_enum_variant_list, + STATE(47), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67489] = 3, - ACTIONS(2638), 1, - anon_sym_COLON, - ACTIONS(3759), 1, - anon_sym_PLUS, + [67630] = 3, + ACTIONS(3153), 1, + anon_sym_LPAREN, + STATE(1538), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67500] = 3, - ACTIONS(3534), 1, + [67641] = 3, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(849), 1, + STATE(285), 1, sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67511] = 3, - ACTIONS(2344), 1, - anon_sym_LBRACE, - STATE(995), 1, - sym_field_initializer_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67522] = 3, - ACTIONS(3500), 1, + [67652] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(426), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67533] = 3, + [67663] = 3, ACTIONS(3153), 1, anon_sym_LPAREN, - STATE(1532), 1, + STATE(1565), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67544] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_declaration_list, + [67674] = 3, + ACTIONS(3695), 1, + anon_sym_RPAREN, + ACTIONS(4691), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67555] = 3, - ACTIONS(3500), 1, + [67685] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(902), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67566] = 3, - ACTIONS(3500), 1, + [67696] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4751), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67707] = 3, + ACTIONS(4753), 1, + anon_sym_SEMI, + ACTIONS(4755), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67718] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(907), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67577] = 3, - ACTIONS(3500), 1, + [67729] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(914), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67588] = 3, - ACTIONS(4751), 1, + [67740] = 3, + ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(4753), 1, - anon_sym_LBRACE, + STATE(1285), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67599] = 3, - ACTIONS(279), 1, - anon_sym_LBRACE, - STATE(1058), 1, - sym_block, + [67751] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67610] = 3, - ACTIONS(3759), 1, + ACTIONS(4757), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67760] = 3, + ACTIONS(4759), 1, + anon_sym_SEMI, + ACTIONS(4761), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [67771] = 3, + ACTIONS(3767), 1, anon_sym_PLUS, - ACTIONS(4755), 1, + ACTIONS(4763), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67621] = 3, - ACTIONS(3500), 1, + [67782] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(935), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67632] = 3, - ACTIONS(3500), 1, + [67793] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(950), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67643] = 2, + [67804] = 3, + ACTIONS(3725), 1, + anon_sym_RBRACE, + ACTIONS(4691), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4509), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [67652] = 3, - ACTIONS(279), 1, + [67815] = 3, + ACTIONS(2332), 1, anon_sym_LBRACE, - STATE(960), 1, - sym_block, + STATE(1018), 1, + sym_field_initializer_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67663] = 3, - ACTIONS(3534), 1, - anon_sym_LBRACE, - STATE(859), 1, - sym_field_declaration_list, + [67826] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67674] = 3, - ACTIONS(15), 1, + ACTIONS(2153), 2, + anon_sym_COMMA, + anon_sym_GT, + [67835] = 3, + ACTIONS(3554), 1, anon_sym_LBRACE, - STATE(54), 1, - sym_block, + STATE(918), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67685] = 3, - ACTIONS(3500), 1, + [67846] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(876), 1, + STATE(355), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67696] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4757), 1, - anon_sym_GT, + [67857] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(337), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67707] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4759), 1, - anon_sym_EQ, + [67868] = 3, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67718] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(883), 1, - sym_parameters, + [67879] = 3, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(882), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67729] = 3, - ACTIONS(3753), 1, - anon_sym_LBRACE, - STATE(249), 1, - sym_enum_variant_list, + [67890] = 3, + ACTIONS(4691), 1, + anon_sym_SEMI, + ACTIONS(4765), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67740] = 3, - ACTIONS(3554), 1, + [67901] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, STATE(321), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67751] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1534), 1, - sym_parameters, + [67912] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67762] = 3, - ACTIONS(3500), 1, + ACTIONS(3995), 2, + anon_sym_COMMA, + anon_sym_GT, + [67921] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(886), 1, + STATE(827), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67773] = 3, - ACTIONS(3500), 1, + [67932] = 3, + ACTIONS(3540), 1, anon_sym_LBRACE, - STATE(880), 1, + STATE(779), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67784] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4761), 1, + [67943] = 3, + ACTIONS(4767), 1, anon_sym_SEMI, + ACTIONS(4769), 1, + anon_sym_as, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67795] = 2, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - ACTIONS(4763), 2, - sym_float_literal, - sym_integer_literal, - [67804] = 3, - ACTIONS(2690), 1, - anon_sym_COLON, - ACTIONS(3759), 1, - anon_sym_PLUS, + [67954] = 3, + ACTIONS(3514), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67815] = 3, - ACTIONS(4765), 1, - sym_identifier, - ACTIONS(4767), 1, - sym_mutable_specifier, + [67965] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(371), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67826] = 3, - ACTIONS(3500), 1, + [67976] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(865), 1, + STATE(418), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67837] = 3, - ACTIONS(4691), 1, - anon_sym_SEMI, - ACTIONS(4769), 1, - anon_sym_RPAREN, + [67987] = 3, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67848] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1569), 1, - sym_parameters, + [67998] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67859] = 3, - ACTIONS(3899), 1, + [68009] = 3, + ACTIONS(3924), 1, anon_sym_PIPE, ACTIONS(4771), 1, anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67870] = 3, - ACTIONS(4773), 1, - sym_identifier, - ACTIONS(4775), 1, - sym_mutable_specifier, + [68020] = 3, + ACTIONS(3540), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67881] = 2, + [68031] = 3, + ACTIONS(2302), 1, + anon_sym_LPAREN, + STATE(731), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4777), 2, - anon_sym_const, - sym_mutable_specifier, - [67890] = 3, - ACTIONS(3526), 1, + [68042] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(276), 1, - sym_field_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67901] = 2, + STATE(422), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4148), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [67910] = 3, - ACTIONS(3777), 1, + [68053] = 3, + ACTIONS(4773), 1, + anon_sym_LPAREN, + ACTIONS(4775), 1, anon_sym_LBRACE, - STATE(924), 1, - sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67921] = 3, + [68064] = 3, ACTIONS(3153), 1, anon_sym_LPAREN, - STATE(1297), 1, + STATE(1547), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67932] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, + [68075] = 3, + ACTIONS(4777), 1, + sym_identifier, ACTIONS(4779), 1, - anon_sym_SEMI, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67943] = 3, - ACTIONS(740), 1, + [68086] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(972), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67954] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(294), 1, - sym_field_declaration_list, + [68097] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67965] = 3, - ACTIONS(740), 1, + ACTIONS(4148), 2, + anon_sym_COMMA, + anon_sym_GT, + [68106] = 3, + ACTIONS(638), 1, anon_sym_LBRACE, - STATE(221), 1, + STATE(219), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67976] = 3, - ACTIONS(3554), 1, - anon_sym_LBRACE, - STATE(307), 1, - sym_declaration_list, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [67987] = 3, - ACTIONS(3554), 1, + [68117] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(355), 1, + STATE(265), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [67998] = 3, - ACTIONS(740), 1, + [68128] = 3, + ACTIONS(638), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(229), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68009] = 3, - ACTIONS(3554), 1, + [68139] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(361), 1, + STATE(263), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68020] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1558), 1, - sym_parameters, + [68150] = 3, + ACTIONS(4691), 1, + anon_sym_SEMI, + ACTIONS(4781), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68031] = 3, - ACTIONS(3554), 1, + [68161] = 3, + ACTIONS(638), 1, anon_sym_LBRACE, - STATE(454), 1, - sym_declaration_list, + STATE(224), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68042] = 2, + [68172] = 3, + ACTIONS(4691), 1, + anon_sym_SEMI, + ACTIONS(4783), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4504), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [68051] = 3, - ACTIONS(3280), 1, - anon_sym_COLON_COLON, - ACTIONS(4781), 1, - anon_sym_BANG, + [68183] = 3, + ACTIONS(3675), 1, + anon_sym_RPAREN, + ACTIONS(4691), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68062] = 3, - ACTIONS(3554), 1, + [68194] = 3, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(380), 1, - sym_declaration_list, + STATE(317), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68073] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4783), 1, - anon_sym_EQ, + [68205] = 3, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, + ACTIONS(4785), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68084] = 3, - ACTIONS(3554), 1, + [68216] = 3, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(398), 1, - sym_declaration_list, + STATE(257), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68095] = 3, - ACTIONS(3554), 1, + [68227] = 3, + ACTIONS(15), 1, anon_sym_LBRACE, - STATE(344), 1, - sym_declaration_list, + STATE(48), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68106] = 2, + [68238] = 3, + ACTIONS(3833), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4281), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [68115] = 3, - ACTIONS(3707), 1, + [68249] = 3, + ACTIONS(3727), 1, + anon_sym_COLON_COLON, + ACTIONS(4787), 1, anon_sym_RPAREN, - ACTIONS(4691), 1, - anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68126] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1284), 1, - sym_parameters, + [68260] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4789), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68137] = 3, - ACTIONS(3155), 1, - anon_sym_BANG, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, + [68271] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(412), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68148] = 2, + [68282] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(2125), 2, - anon_sym_COMMA, - anon_sym_GT, - [68157] = 3, - ACTIONS(4391), 1, - sym_identifier, - ACTIONS(4395), 1, - sym_mutable_specifier, + [68293] = 3, + ACTIONS(3767), 1, + anon_sym_PLUS, + ACTIONS(4791), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68168] = 3, - ACTIONS(3554), 1, + [68304] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(390), 1, + STATE(279), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68179] = 3, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - ACTIONS(4787), 1, - anon_sym_RPAREN, + [68315] = 3, + ACTIONS(4300), 1, + sym_identifier, + ACTIONS(4304), 1, + sym_mutable_specifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68190] = 3, - ACTIONS(3554), 1, + [68326] = 3, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(431), 1, - sym_declaration_list, + STATE(331), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68201] = 3, - ACTIONS(740), 1, - anon_sym_LBRACE, - STATE(233), 1, - sym_block, + [68337] = 3, + ACTIONS(3723), 1, + anon_sym_COLON_COLON, + ACTIONS(4787), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68212] = 3, - ACTIONS(3554), 1, + [68348] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(437), 1, + STATE(249), 1, sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68223] = 2, + [68359] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4428), 2, + ACTIONS(4435), 2, anon_sym_RBRACE, anon_sym_COMMA, - [68232] = 3, - ACTIONS(3554), 1, + [68368] = 3, + ACTIONS(638), 1, anon_sym_LBRACE, - STATE(388), 1, - sym_declaration_list, + STATE(238), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68243] = 3, + [68379] = 3, ACTIONS(3153), 1, anon_sym_LPAREN, - STATE(1571), 1, + STATE(1548), 1, sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68254] = 3, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(1545), 1, - sym_parameters, + [68390] = 3, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68265] = 3, - ACTIONS(3526), 1, + [68401] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(385), 1, - sym_field_declaration_list, + STATE(288), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68276] = 3, - ACTIONS(3753), 1, + [68412] = 3, + ACTIONS(3502), 1, anon_sym_LBRACE, - STATE(426), 1, - sym_enum_variant_list, + STATE(441), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68287] = 3, - ACTIONS(3759), 1, - anon_sym_PLUS, - ACTIONS(4789), 1, - anon_sym_SEMI, + [68423] = 3, + ACTIONS(638), 1, + anon_sym_LBRACE, + STATE(232), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68298] = 3, - ACTIONS(3751), 1, + [68434] = 3, + ACTIONS(3719), 1, anon_sym_COLON_COLON, - ACTIONS(4791), 1, + ACTIONS(4787), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68309] = 3, - ACTIONS(3747), 1, + [68445] = 3, + ACTIONS(3155), 1, + anon_sym_BANG, + ACTIONS(4793), 1, anon_sym_COLON_COLON, - ACTIONS(4791), 1, - anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68320] = 3, - ACTIONS(4793), 1, - anon_sym_SEMI, - ACTIONS(4795), 1, - anon_sym_as, + [68456] = 3, + ACTIONS(85), 1, + anon_sym_PIPE, + STATE(84), 1, + sym_closure_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68331] = 2, + [68467] = 3, + ACTIONS(4795), 1, + anon_sym_LT, + STATE(634), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4331), 2, - anon_sym_COMMA, - anon_sym_GT, - [68340] = 3, - ACTIONS(3745), 1, - anon_sym_COLON_COLON, - ACTIONS(4791), 1, - anon_sym_RPAREN, + [68478] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68351] = 3, - ACTIONS(3302), 1, - anon_sym_BANG, + ACTIONS(4406), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [68487] = 3, + ACTIONS(3924), 1, + anon_sym_PIPE, ACTIONS(4797), 1, - anon_sym_COLON_COLON, + anon_sym_in, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68362] = 3, - ACTIONS(3288), 1, - anon_sym_COLON_COLON, - ACTIONS(4781), 1, - anon_sym_BANG, + [68498] = 3, + ACTIONS(848), 1, + anon_sym_LBRACE, + STATE(1391), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68373] = 2, + [68509] = 3, + ACTIONS(3769), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_enum_variant_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4118), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [68382] = 3, - ACTIONS(2310), 1, - anon_sym_LT2, - STATE(1055), 1, - sym_type_arguments, + [68520] = 3, + ACTIONS(3514), 1, + anon_sym_LBRACE, + STATE(250), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68393] = 3, - ACTIONS(3554), 1, + [68531] = 3, + ACTIONS(279), 1, anon_sym_LBRACE, - STATE(379), 1, - sym_declaration_list, + STATE(1020), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68404] = 2, + [68542] = 3, + ACTIONS(279), 1, + anon_sym_LBRACE, + STATE(1000), 1, + sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4346), 2, - anon_sym_COMMA, - anon_sym_GT, - [68413] = 2, + [68553] = 3, + ACTIONS(4799), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4799), 2, - anon_sym_const, - sym_mutable_specifier, - [68422] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(272), 1, - sym_field_declaration_list, + [68564] = 3, + ACTIONS(3518), 1, + anon_sym_LT, + STATE(677), 1, + sym_type_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68433] = 3, - ACTIONS(4801), 1, + [68575] = 3, + ACTIONS(3153), 1, anon_sym_LPAREN, - ACTIONS(4803), 1, - anon_sym_LBRACE, + STATE(1287), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68444] = 3, - ACTIONS(2302), 1, - anon_sym_LPAREN, - STATE(850), 1, - sym_parameters, + [68586] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(294), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68455] = 3, - ACTIONS(279), 1, + [68597] = 3, + ACTIONS(3514), 1, anon_sym_LBRACE, - STATE(984), 1, - sym_block, + STATE(430), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68466] = 2, + [68608] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4362), 2, - anon_sym_RBRACE, + ACTIONS(3861), 2, + anon_sym_RPAREN, anon_sym_COMMA, - [68475] = 3, - ACTIONS(85), 1, - anon_sym_PIPE, - STATE(79), 1, - sym_closure_parameters, + [68617] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68486] = 3, - ACTIONS(848), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_block, + ACTIONS(4803), 2, + anon_sym_const, + sym_mutable_specifier, + [68626] = 3, + ACTIONS(3276), 1, + anon_sym_BANG, + ACTIONS(4805), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68497] = 2, + [68637] = 3, + ACTIONS(3554), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym_field_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4805), 2, - anon_sym_const, - sym_mutable_specifier, - [68506] = 3, - ACTIONS(3745), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 1, - anon_sym_RPAREN, + [68648] = 3, + ACTIONS(3608), 1, + anon_sym_COLON, + STATE(1826), 1, + sym_trait_bounds, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68517] = 2, + [68659] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(3887), 2, - anon_sym_RPAREN, + ACTIONS(4208), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [68526] = 3, - ACTIONS(3899), 1, - anon_sym_PIPE, - ACTIONS(4807), 1, - anon_sym_EQ, + [68668] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(440), 1, + sym_declaration_list, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68537] = 2, + [68679] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - ACTIONS(4809), 2, - sym_identifier, - sym_metavariable, - [68546] = 3, + ACTIONS(4807), 2, + sym_float_literal, + sym_integer_literal, + [68688] = 3, + ACTIONS(2071), 1, + anon_sym_SQUOTE, + STATE(2067), 1, + sym_lifetime, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68699] = 3, + ACTIONS(3502), 1, + anon_sym_LBRACE, + STATE(271), 1, + sym_declaration_list, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68710] = 3, ACTIONS(279), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(981), 1, sym_block, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68557] = 3, - ACTIONS(3526), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_field_declaration_list, + [68721] = 3, + ACTIONS(2302), 1, + anon_sym_LPAREN, + STATE(845), 1, + sym_parameters, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68568] = 3, - ACTIONS(4811), 1, - anon_sym_LT, - STATE(645), 1, - sym_type_parameters, + [68732] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68579] = 2, - ACTIONS(3843), 1, - anon_sym_COLON_COLON, + ACTIONS(4809), 2, + sym_identifier, + sym_metavariable, + [68741] = 2, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68587] = 2, + ACTIONS(4811), 2, + anon_sym_const, + sym_mutable_specifier, + [68750] = 2, ACTIONS(4813), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68595] = 2, + [68758] = 2, ACTIONS(4815), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68603] = 2, + [68766] = 2, ACTIONS(4817), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68611] = 2, + [68774] = 2, ACTIONS(4819), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68619] = 2, - ACTIONS(4397), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68627] = 2, + [68782] = 2, ACTIONS(4821), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68635] = 2, + [68790] = 2, ACTIONS(4823), 1, - sym_identifier, + anon_sym_LPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68643] = 2, + [68798] = 2, ACTIONS(4825), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68651] = 2, + [68806] = 2, ACTIONS(4827), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68659] = 2, + [68814] = 2, ACTIONS(4829), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68667] = 2, + [68822] = 2, + ACTIONS(4392), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68830] = 2, ACTIONS(4831), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68675] = 2, + [68838] = 2, ACTIONS(4833), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68683] = 2, + [68846] = 2, ACTIONS(4835), 1, - anon_sym_fn, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68691] = 2, - ACTIONS(4385), 1, + [68854] = 2, + ACTIONS(4837), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68699] = 2, - ACTIONS(4837), 1, - anon_sym_RBRACE, + [68862] = 2, + ACTIONS(2195), 1, + anon_sym_PLUS, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68707] = 2, - ACTIONS(3769), 1, + [68870] = 2, + ACTIONS(4376), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68715] = 2, + [68878] = 2, ACTIONS(4839), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68723] = 2, + [68886] = 2, ACTIONS(4841), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68731] = 2, + [68894] = 2, + ACTIONS(2185), 1, + anon_sym_PLUS, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [68902] = 2, ACTIONS(4843), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68739] = 2, + [68910] = 2, ACTIONS(4845), 1, - sym_identifier, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68747] = 2, + [68918] = 2, ACTIONS(4847), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68755] = 2, - ACTIONS(4375), 1, + [68926] = 2, + ACTIONS(4849), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68763] = 2, - ACTIONS(4849), 1, - sym_identifier, + [68934] = 2, + ACTIONS(4360), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68771] = 2, + [68942] = 2, ACTIONS(4851), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68779] = 2, + [68950] = 2, ACTIONS(4853), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68787] = 2, + [68958] = 2, ACTIONS(4855), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68795] = 2, + [68966] = 2, ACTIONS(4857), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, - sym_line_comment, - [68803] = 2, - ACTIONS(4859), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [68811] = 2, - ACTIONS(3683), 1, - anon_sym_COLON, + sym_line_comment, + [68974] = 2, + ACTIONS(4364), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68819] = 2, - ACTIONS(4369), 1, - anon_sym_GT, + [68982] = 2, + ACTIONS(4859), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68827] = 2, + [68990] = 2, ACTIONS(4861), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68835] = 2, + [68998] = 2, ACTIONS(4863), 1, - sym_identifier, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68843] = 2, + [69006] = 2, ACTIONS(4865), 1, - sym_identifier, + anon_sym_LT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68851] = 2, + [69014] = 2, ACTIONS(4867), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68859] = 2, - ACTIONS(4410), 1, - sym_identifier, + [69022] = 2, + ACTIONS(4869), 1, + sym_self, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68867] = 2, - ACTIONS(4869), 1, + [69030] = 2, + ACTIONS(4871), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68875] = 2, - ACTIONS(4871), 1, - sym_identifier, + [69038] = 2, + ACTIONS(4372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68883] = 2, + [69046] = 2, ACTIONS(4873), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68891] = 2, - ACTIONS(3013), 1, - anon_sym_COLON_COLON, + [69054] = 2, + ACTIONS(4356), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68899] = 2, - ACTIONS(4348), 1, + [69062] = 2, + ACTIONS(4875), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68907] = 2, - ACTIONS(3213), 1, - anon_sym_COLON_COLON, + [69070] = 2, + ACTIONS(4877), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68915] = 2, - ACTIONS(4875), 1, - anon_sym_COLON, + [69078] = 2, + ACTIONS(4879), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68923] = 2, - ACTIONS(4877), 1, + [69086] = 2, + ACTIONS(4881), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68931] = 2, - ACTIONS(4879), 1, + [69094] = 2, + ACTIONS(4883), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68939] = 2, - ACTIONS(4358), 1, - anon_sym_RBRACE, + [69102] = 2, + ACTIONS(4885), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68947] = 2, - ACTIONS(4881), 1, - anon_sym_RPAREN, + [69110] = 2, + ACTIONS(4887), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68955] = 2, - ACTIONS(3029), 1, + [69118] = 2, + ACTIONS(4889), 1, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69126] = 2, + ACTIONS(3238), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68963] = 2, - ACTIONS(4883), 1, + [69134] = 2, + ACTIONS(3865), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68971] = 2, - ACTIONS(4885), 1, + [69142] = 2, + ACTIONS(4891), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68979] = 2, - ACTIONS(2212), 1, - anon_sym_PLUS, + [69150] = 2, + ACTIONS(3049), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68987] = 2, - ACTIONS(4887), 1, - anon_sym_fn, + [69158] = 2, + ACTIONS(3224), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [68995] = 2, - ACTIONS(4889), 1, - anon_sym_COLON, + [69166] = 2, + ACTIONS(4893), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69003] = 2, - ACTIONS(4891), 1, + [69174] = 2, + ACTIONS(4895), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69011] = 2, - ACTIONS(4893), 1, - anon_sym_RPAREN, + [69182] = 2, + ACTIONS(4246), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69019] = 2, - ACTIONS(4895), 1, - anon_sym_RBRACK, + [69190] = 2, + ACTIONS(3039), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69027] = 2, + [69198] = 2, ACTIONS(4897), 1, - anon_sym_RPAREN, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69035] = 2, + [69206] = 2, ACTIONS(4899), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69043] = 2, + [69214] = 2, ACTIONS(4901), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69051] = 2, + [69222] = 2, ACTIONS(4903), 1, - anon_sym_RBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69059] = 2, + [69230] = 2, ACTIONS(4905), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69067] = 2, + [69238] = 2, ACTIONS(4907), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69075] = 2, + [69246] = 2, ACTIONS(4909), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69083] = 2, + [69254] = 2, ACTIONS(4911), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69091] = 2, + [69262] = 2, ACTIONS(4913), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69099] = 2, - ACTIONS(4915), 1, + [69270] = 2, + ACTIONS(3914), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69278] = 2, + ACTIONS(4637), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69107] = 2, - ACTIONS(4917), 1, - anon_sym_COLON_COLON, + [69286] = 2, + ACTIONS(4915), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69115] = 2, - ACTIONS(4919), 1, + [69294] = 2, + ACTIONS(4917), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69123] = 2, - ACTIONS(626), 1, - anon_sym_RBRACK, + [69302] = 2, + ACTIONS(2408), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69131] = 2, - ACTIONS(4921), 1, + [69310] = 2, + ACTIONS(4288), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69139] = 2, - ACTIONS(4923), 1, - anon_sym_RBRACE, + [69318] = 2, + ACTIONS(4919), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69147] = 2, - ACTIONS(4691), 1, + [69326] = 2, + ACTIONS(4921), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69155] = 2, - ACTIONS(4138), 1, - anon_sym_RPAREN, + [69334] = 2, + ACTIONS(2384), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69163] = 2, - ACTIONS(2424), 1, + [69342] = 2, + ACTIONS(4805), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69171] = 2, - ACTIONS(4797), 1, - anon_sym_COLON_COLON, + [69350] = 2, + ACTIONS(4923), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69179] = 2, + [69358] = 2, ACTIONS(4925), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69187] = 2, + [69366] = 2, ACTIONS(4927), 1, - anon_sym_fn, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69195] = 2, + [69374] = 2, ACTIONS(4929), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69203] = 2, + [69382] = 2, ACTIONS(4931), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69211] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69219] = 2, - ACTIONS(4935), 1, - anon_sym_EQ_GT, + [69390] = 2, + ACTIONS(4431), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69227] = 2, - ACTIONS(4937), 1, - anon_sym_EQ_GT, + [69398] = 2, + ACTIONS(4933), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69235] = 2, - ACTIONS(4128), 1, - anon_sym_RBRACK, + [69406] = 2, + ACTIONS(2464), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69243] = 2, - ACTIONS(4296), 1, - anon_sym_RBRACE, + [69414] = 2, + ACTIONS(4935), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69251] = 2, - ACTIONS(4939), 1, + [69422] = 2, + ACTIONS(4937), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69259] = 2, - ACTIONS(2141), 1, - anon_sym_EQ_GT, + [69430] = 2, + ACTIONS(4939), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69267] = 2, + [69438] = 2, ACTIONS(4941), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69275] = 2, + [69446] = 2, ACTIONS(4943), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69283] = 2, - ACTIONS(4945), 1, - sym_identifier, + [69454] = 2, + ACTIONS(4503), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69291] = 2, - ACTIONS(4435), 1, + [69462] = 2, + ACTIONS(4945), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69299] = 2, - ACTIONS(4437), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69307] = 2, + [69470] = 2, ACTIONS(4947), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69315] = 2, - ACTIONS(3297), 1, - anon_sym_COLON_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69323] = 2, + [69478] = 2, ACTIONS(4949), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69331] = 2, + [69486] = 2, ACTIONS(4951), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69339] = 2, - ACTIONS(4953), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69347] = 2, - ACTIONS(2191), 1, - anon_sym_PLUS, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69355] = 2, - ACTIONS(4645), 1, - sym_identifier, + [69494] = 2, + ACTIONS(4953), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69363] = 2, + [69502] = 2, ACTIONS(4955), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69371] = 2, + [69510] = 2, ACTIONS(4957), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69379] = 2, - ACTIONS(4959), 1, - sym_identifier, + [69518] = 2, + ACTIONS(4783), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69387] = 2, - ACTIONS(4961), 1, + [69526] = 2, + ACTIONS(4959), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69395] = 2, - ACTIONS(4963), 1, - anon_sym_LT, + [69534] = 2, + ACTIONS(365), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69403] = 2, - ACTIONS(4965), 1, - sym_identifier, + [69542] = 2, + ACTIONS(4961), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69411] = 2, - ACTIONS(4967), 1, + [69550] = 2, + ACTIONS(4963), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69419] = 2, - ACTIONS(4969), 1, + [69558] = 2, + ACTIONS(4453), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69427] = 2, - ACTIONS(4971), 1, - sym_identifier, + [69566] = 2, + ACTIONS(4965), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69435] = 2, - ACTIONS(4458), 1, - sym_identifier, + [69574] = 2, + ACTIONS(4967), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69443] = 2, - ACTIONS(4973), 1, + [69582] = 2, + ACTIONS(3015), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69451] = 2, - ACTIONS(4975), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69459] = 2, - ACTIONS(4977), 1, - sym_identifier, + [69590] = 2, + ACTIONS(2149), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69467] = 2, - ACTIONS(4478), 1, + [69598] = 2, + ACTIONS(4969), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69475] = 2, - ACTIONS(4979), 1, - anon_sym_COLON_COLON, + [69606] = 2, + ACTIONS(4971), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69483] = 2, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, + [69614] = 2, + ACTIONS(4973), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69491] = 2, - ACTIONS(4981), 1, + [69622] = 2, + ACTIONS(4975), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69499] = 2, - ACTIONS(4983), 1, + [69630] = 2, + ACTIONS(4977), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69507] = 2, - ACTIONS(3997), 1, + [69638] = 2, + ACTIONS(4979), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69515] = 2, - ACTIONS(4985), 1, + [69646] = 2, + ACTIONS(4981), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69523] = 2, - ACTIONS(4262), 1, + [69654] = 2, + ACTIONS(4442), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69531] = 2, - ACTIONS(4987), 1, + [69662] = 2, + ACTIONS(4983), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69539] = 2, - ACTIONS(2454), 1, - anon_sym_COLON_COLON, + [69670] = 2, + ACTIONS(4985), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69547] = 2, - ACTIONS(2420), 1, + [69678] = 2, + ACTIONS(4987), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69555] = 2, + [69686] = 2, ACTIONS(4989), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69563] = 2, + [69694] = 2, ACTIONS(4991), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69571] = 2, + [69702] = 2, ACTIONS(4993), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69710] = 2, + ACTIONS(4220), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69579] = 2, + [69718] = 2, ACTIONS(4995), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69587] = 2, + [69726] = 2, ACTIONS(4997), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69595] = 2, + [69734] = 2, ACTIONS(4999), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69603] = 2, + [69742] = 2, + ACTIONS(3723), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69750] = 2, ACTIONS(5001), 1, - anon_sym_COLON, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69611] = 2, + [69758] = 2, ACTIONS(5003), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69619] = 2, + [69766] = 2, ACTIONS(5005), 1, - anon_sym_RPAREN, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69627] = 2, + [69774] = 2, ACTIONS(5007), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69635] = 2, - ACTIONS(361), 1, - anon_sym_RBRACK, + [69782] = 2, + ACTIONS(3725), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69790] = 2, + ACTIONS(3165), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69643] = 2, + [69798] = 2, ACTIONS(5009), 1, - anon_sym_LBRACK, + ts_builtin_sym_end, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69651] = 2, + [69806] = 2, ACTIONS(5011), 1, - anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69814] = 2, + ACTIONS(2666), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69659] = 2, + [69822] = 2, ACTIONS(5013), 1, - anon_sym_SEMI, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69667] = 2, + [69830] = 2, ACTIONS(5015), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69675] = 2, + [69838] = 2, ACTIONS(5017), 1, - anon_sym_SEMI, + sym_identifier, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69846] = 2, + ACTIONS(4793), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69683] = 2, + [69854] = 2, ACTIONS(5019), 1, - anon_sym_LPAREN, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69691] = 2, + [69862] = 2, ACTIONS(5021), 1, - anon_sym_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69699] = 2, - ACTIONS(5023), 1, - anon_sym_SEMI, + [69870] = 2, + ACTIONS(3230), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69878] = 2, + ACTIONS(4565), 1, + anon_sym_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69707] = 2, - ACTIONS(4530), 1, + [69886] = 2, + ACTIONS(5023), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69715] = 2, - ACTIONS(3747), 1, - anon_sym_COLON_COLON, + [69894] = 2, + ACTIONS(4322), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69723] = 2, + [69902] = 2, ACTIONS(5025), 1, - anon_sym_SEMI, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69731] = 2, - ACTIONS(5027), 1, - sym_identifier, + [69910] = 2, + ACTIONS(2492), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69739] = 2, - ACTIONS(2426), 1, + [69918] = 2, + ACTIONS(5027), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69747] = 2, - ACTIONS(5029), 1, - anon_sym_COLON_COLON, + [69926] = 2, + ACTIONS(3735), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69755] = 2, - ACTIONS(3189), 1, - anon_sym_fn, + [69934] = 2, + ACTIONS(5029), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69763] = 2, + [69942] = 2, ACTIONS(5031), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [69950] = 2, + ACTIONS(3857), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69771] = 2, + [69958] = 2, ACTIONS(5033), 1, - ts_builtin_sym_end, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69779] = 2, - ACTIONS(2528), 1, - anon_sym_COLON_COLON, + [69966] = 2, + ACTIONS(3918), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69787] = 2, + [69974] = 2, ACTIONS(5035), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69795] = 2, - ACTIONS(2863), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [69803] = 2, + [69982] = 2, ACTIONS(5037), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69811] = 2, + [69990] = 2, ACTIONS(5039), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69819] = 2, + [69998] = 2, ACTIONS(5041), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69827] = 2, - ACTIONS(5043), 1, - sym_identifier, + [70006] = 2, + ACTIONS(4595), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69835] = 2, - ACTIONS(5045), 1, - anon_sym_RPAREN, + [70014] = 2, + ACTIONS(5043), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69843] = 2, - ACTIONS(3689), 1, - anon_sym_SEMI, + [70022] = 2, + ACTIONS(3785), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69851] = 2, - ACTIONS(3867), 1, + [70030] = 2, + ACTIONS(5045), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69859] = 2, - ACTIONS(5047), 1, - anon_sym_COLON_COLON, + [70038] = 2, + ACTIONS(2121), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69867] = 2, - ACTIONS(3264), 1, + [70046] = 2, + ACTIONS(3829), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69875] = 2, - ACTIONS(3837), 1, + [70054] = 2, + ACTIONS(5047), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69883] = 2, + [70062] = 2, ACTIONS(5049), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69891] = 2, - ACTIONS(5051), 1, - sym_identifier, + [70070] = 2, + ACTIONS(3773), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69899] = 2, - ACTIONS(3853), 1, + [70078] = 2, + ACTIONS(5051), 1, anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69907] = 2, + [70086] = 2, ACTIONS(5053), 1, - anon_sym_COLON_COLON, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69915] = 2, + [70094] = 2, ACTIONS(5055), 1, - sym_identifier, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69923] = 2, - ACTIONS(5057), 1, - anon_sym_SEMI, + [70102] = 2, + ACTIONS(4583), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69931] = 2, - ACTIONS(4785), 1, - anon_sym_COLON_COLON, + [70110] = 2, + ACTIONS(5057), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69939] = 2, + [70118] = 2, ACTIONS(5059), 1, - anon_sym_SEMI, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69947] = 2, + [70126] = 2, ACTIONS(5061), 1, - anon_sym_COLON, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69955] = 2, + [70134] = 2, ACTIONS(5063), 1, - anon_sym_LBRACK, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69963] = 2, + [70142] = 2, ACTIONS(5065), 1, - anon_sym_COLON, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70150] = 2, + ACTIONS(3910), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69971] = 2, + [70158] = 2, + ACTIONS(4005), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70166] = 2, ACTIONS(5067), 1, - anon_sym_EQ, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69979] = 2, + [70174] = 2, ACTIONS(5069), 1, - anon_sym_EQ_GT, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69987] = 2, + [70182] = 2, ACTIONS(5071), 1, - anon_sym_SEMI, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [69995] = 2, + [70190] = 2, ACTIONS(5073), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70003] = 2, + [70198] = 2, ACTIONS(5075), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70011] = 2, + [70206] = 2, ACTIONS(5077), 1, - anon_sym_LBRACK, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70019] = 2, + [70214] = 2, ACTIONS(5079), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70027] = 2, - ACTIONS(4199), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70035] = 2, - ACTIONS(3027), 1, - sym_identifier, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70043] = 2, + [70222] = 2, ACTIONS(5081), 1, - anon_sym_SEMI, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70051] = 2, + [70230] = 2, ACTIONS(5083), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70059] = 2, - ACTIONS(5085), 1, - anon_sym_SEMI, + [70238] = 2, + ACTIONS(2855), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70067] = 2, - ACTIONS(3695), 1, - anon_sym_SEMI, + [70246] = 2, + ACTIONS(5085), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70075] = 2, + [70254] = 2, ACTIONS(5087), 1, - anon_sym_COLON, + anon_sym_EQ, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70262] = 2, + ACTIONS(4691), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70083] = 2, + [70270] = 2, ACTIONS(5089), 1, - anon_sym_EQ, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70091] = 2, - ACTIONS(5091), 1, - anon_sym_COLON, + [70278] = 2, + ACTIONS(4419), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70099] = 2, - ACTIONS(5093), 1, - anon_sym_RBRACE, + [70286] = 2, + ACTIONS(3288), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70107] = 2, - ACTIONS(4587), 1, - anon_sym_RBRACE, + [70294] = 2, + ACTIONS(5091), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70115] = 2, - ACTIONS(2145), 1, - anon_sym_EQ_GT, + [70302] = 2, + ACTIONS(3691), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70123] = 2, - ACTIONS(5095), 1, + [70310] = 2, + ACTIONS(5093), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70131] = 2, - ACTIONS(4447), 1, - sym_identifier, + [70318] = 2, + ACTIONS(5095), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70139] = 2, + [70326] = 2, ACTIONS(5097), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70147] = 2, + [70334] = 2, ACTIONS(5099), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70155] = 2, - ACTIONS(5101), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70163] = 2, - ACTIONS(5103), 1, + [70342] = 2, + ACTIONS(4054), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70171] = 2, - ACTIONS(3901), 1, - anon_sym_RPAREN, + [70350] = 2, + ACTIONS(5101), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70179] = 2, - ACTIONS(5105), 1, - anon_sym_EQ, + [70358] = 2, + ACTIONS(5103), 1, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70187] = 2, - ACTIONS(4705), 1, - anon_sym_SEMI, + [70366] = 2, + ACTIONS(5105), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70195] = 2, + [70374] = 2, ACTIONS(5107), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70203] = 2, + [70382] = 2, ACTIONS(5109), 1, anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70211] = 2, + [70390] = 2, ACTIONS(5111), 1, - anon_sym_COLON, + anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70219] = 2, + [70398] = 2, ACTIONS(5113), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70227] = 2, + [70406] = 2, ACTIONS(5115), 1, - anon_sym_RBRACE, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70235] = 2, + [70414] = 2, + ACTIONS(3966), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70422] = 2, ACTIONS(5117), 1, - sym_identifier, + anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70243] = 2, + [70430] = 2, ACTIONS(5119), 1, - sym_self, + anon_sym_COLON, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70251] = 2, + [70438] = 2, ACTIONS(5121), 1, - anon_sym_RPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70259] = 2, - ACTIONS(4693), 1, - anon_sym_SEMI, + [70446] = 2, + ACTIONS(612), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70267] = 2, - ACTIONS(5123), 1, - sym_identifier, + [70454] = 2, + ACTIONS(3189), 1, + anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70275] = 2, - ACTIONS(3889), 1, - anon_sym_RPAREN, + [70462] = 2, + ACTIONS(4693), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70283] = 2, - ACTIONS(3165), 1, - anon_sym_fn, + [70470] = 2, + ACTIONS(5123), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70291] = 2, + [70478] = 2, ACTIONS(5125), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70299] = 2, + [70486] = 2, ACTIONS(5127), 1, + anon_sym_COLON_COLON, + ACTIONS(3), 2, + sym_block_comment, + sym_line_comment, + [70494] = 2, + ACTIONS(4653), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70307] = 2, + [70502] = 2, ACTIONS(5129), 1, - sym_identifier, + anon_sym_RPAREN, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70315] = 2, + [70510] = 2, ACTIONS(5131), 1, - anon_sym_LPAREN, + sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70323] = 2, + [70518] = 2, ACTIONS(5133), 1, anon_sym_fn, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70331] = 2, - ACTIONS(3893), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70339] = 2, + [70526] = 2, ACTIONS(5135), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70347] = 2, + [70534] = 2, ACTIONS(5137), 1, - anon_sym_fn, + anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70355] = 2, + [70542] = 2, ACTIONS(5139), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70363] = 2, + [70550] = 2, ACTIONS(5141), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70371] = 2, + [70558] = 2, ACTIONS(5143), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70379] = 2, + [70566] = 2, ACTIONS(5145), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70387] = 2, + [70574] = 2, ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70395] = 2, - ACTIONS(5149), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70403] = 2, - ACTIONS(5151), 1, + [70582] = 2, + ACTIONS(5149), 1, sym_identifier, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70411] = 2, - ACTIONS(4248), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_block_comment, - sym_line_comment, - [70419] = 2, - ACTIONS(4653), 1, - anon_sym_RBRACE, + [70590] = 2, + ACTIONS(5151), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_block_comment, sym_line_comment, - [70427] = 2, + [70598] = 2, ACTIONS(5153), 1, sym_identifier, ACTIONS(3), 2, @@ -112911,101 +113061,101 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(547)] = 121, [SMALL_STATE(548)] = 248, [SMALL_STATE(549)] = 369, - [SMALL_STATE(550)] = 490, - [SMALL_STATE(551)] = 611, - [SMALL_STATE(552)] = 732, - [SMALL_STATE(553)] = 853, - [SMALL_STATE(554)] = 974, - [SMALL_STATE(555)] = 1101, - [SMALL_STATE(556)] = 1222, - [SMALL_STATE(557)] = 1343, - [SMALL_STATE(558)] = 1464, - [SMALL_STATE(559)] = 1591, - [SMALL_STATE(560)] = 1718, - [SMALL_STATE(561)] = 1845, - [SMALL_STATE(562)] = 1966, - [SMALL_STATE(563)] = 2087, - [SMALL_STATE(564)] = 2208, - [SMALL_STATE(565)] = 2329, - [SMALL_STATE(566)] = 2450, - [SMALL_STATE(567)] = 2571, - [SMALL_STATE(568)] = 2692, - [SMALL_STATE(569)] = 2819, - [SMALL_STATE(570)] = 2940, - [SMALL_STATE(571)] = 3067, - [SMALL_STATE(572)] = 3194, - [SMALL_STATE(573)] = 3315, - [SMALL_STATE(574)] = 3436, - [SMALL_STATE(575)] = 3563, - [SMALL_STATE(576)] = 3690, - [SMALL_STATE(577)] = 3811, - [SMALL_STATE(578)] = 3932, - [SMALL_STATE(579)] = 4053, - [SMALL_STATE(580)] = 4174, - [SMALL_STATE(581)] = 4295, - [SMALL_STATE(582)] = 4422, - [SMALL_STATE(583)] = 4549, - [SMALL_STATE(584)] = 4670, - [SMALL_STATE(585)] = 4791, - [SMALL_STATE(586)] = 4912, - [SMALL_STATE(587)] = 5039, + [SMALL_STATE(550)] = 496, + [SMALL_STATE(551)] = 617, + [SMALL_STATE(552)] = 738, + [SMALL_STATE(553)] = 859, + [SMALL_STATE(554)] = 980, + [SMALL_STATE(555)] = 1107, + [SMALL_STATE(556)] = 1228, + [SMALL_STATE(557)] = 1349, + [SMALL_STATE(558)] = 1476, + [SMALL_STATE(559)] = 1597, + [SMALL_STATE(560)] = 1724, + [SMALL_STATE(561)] = 1851, + [SMALL_STATE(562)] = 1978, + [SMALL_STATE(563)] = 2099, + [SMALL_STATE(564)] = 2220, + [SMALL_STATE(565)] = 2341, + [SMALL_STATE(566)] = 2462, + [SMALL_STATE(567)] = 2589, + [SMALL_STATE(568)] = 2710, + [SMALL_STATE(569)] = 2831, + [SMALL_STATE(570)] = 2958, + [SMALL_STATE(571)] = 3079, + [SMALL_STATE(572)] = 3200, + [SMALL_STATE(573)] = 3327, + [SMALL_STATE(574)] = 3454, + [SMALL_STATE(575)] = 3581, + [SMALL_STATE(576)] = 3702, + [SMALL_STATE(577)] = 3829, + [SMALL_STATE(578)] = 3956, + [SMALL_STATE(579)] = 4077, + [SMALL_STATE(580)] = 4198, + [SMALL_STATE(581)] = 4319, + [SMALL_STATE(582)] = 4440, + [SMALL_STATE(583)] = 4561, + [SMALL_STATE(584)] = 4682, + [SMALL_STATE(585)] = 4803, + [SMALL_STATE(586)] = 4924, + [SMALL_STATE(587)] = 5045, [SMALL_STATE(588)] = 5166, [SMALL_STATE(589)] = 5287, [SMALL_STATE(590)] = 5411, [SMALL_STATE(591)] = 5535, - [SMALL_STATE(592)] = 5659, - [SMALL_STATE(593)] = 5783, - [SMALL_STATE(594)] = 5907, - [SMALL_STATE(595)] = 6031, - [SMALL_STATE(596)] = 6155, - [SMALL_STATE(597)] = 6279, - [SMALL_STATE(598)] = 6403, - [SMALL_STATE(599)] = 6527, - [SMALL_STATE(600)] = 6651, - [SMALL_STATE(601)] = 6775, - [SMALL_STATE(602)] = 6899, - [SMALL_STATE(603)] = 7023, - [SMALL_STATE(604)] = 7147, - [SMALL_STATE(605)] = 7271, - [SMALL_STATE(606)] = 7395, - [SMALL_STATE(607)] = 7519, - [SMALL_STATE(608)] = 7643, - [SMALL_STATE(609)] = 7767, - [SMALL_STATE(610)] = 7891, - [SMALL_STATE(611)] = 8015, - [SMALL_STATE(612)] = 8139, - [SMALL_STATE(613)] = 8263, - [SMALL_STATE(614)] = 8387, - [SMALL_STATE(615)] = 8511, - [SMALL_STATE(616)] = 8635, - [SMALL_STATE(617)] = 8759, - [SMALL_STATE(618)] = 8883, - [SMALL_STATE(619)] = 9007, - [SMALL_STATE(620)] = 9131, - [SMALL_STATE(621)] = 9255, - [SMALL_STATE(622)] = 9379, - [SMALL_STATE(623)] = 9503, - [SMALL_STATE(624)] = 9627, - [SMALL_STATE(625)] = 9751, - [SMALL_STATE(626)] = 9875, - [SMALL_STATE(627)] = 9999, - [SMALL_STATE(628)] = 10123, - [SMALL_STATE(629)] = 10247, - [SMALL_STATE(630)] = 10371, - [SMALL_STATE(631)] = 10495, - [SMALL_STATE(632)] = 10619, - [SMALL_STATE(633)] = 10743, - [SMALL_STATE(634)] = 10867, - [SMALL_STATE(635)] = 10991, - [SMALL_STATE(636)] = 11115, - [SMALL_STATE(637)] = 11239, - [SMALL_STATE(638)] = 11363, - [SMALL_STATE(639)] = 11487, - [SMALL_STATE(640)] = 11611, - [SMALL_STATE(641)] = 11735, - [SMALL_STATE(642)] = 11859, - [SMALL_STATE(643)] = 11983, - [SMALL_STATE(644)] = 12107, + [SMALL_STATE(592)] = 5605, + [SMALL_STATE(593)] = 5729, + [SMALL_STATE(594)] = 5853, + [SMALL_STATE(595)] = 5977, + [SMALL_STATE(596)] = 6101, + [SMALL_STATE(597)] = 6225, + [SMALL_STATE(598)] = 6349, + [SMALL_STATE(599)] = 6473, + [SMALL_STATE(600)] = 6597, + [SMALL_STATE(601)] = 6721, + [SMALL_STATE(602)] = 6845, + [SMALL_STATE(603)] = 6969, + [SMALL_STATE(604)] = 7093, + [SMALL_STATE(605)] = 7217, + [SMALL_STATE(606)] = 7341, + [SMALL_STATE(607)] = 7465, + [SMALL_STATE(608)] = 7589, + [SMALL_STATE(609)] = 7713, + [SMALL_STATE(610)] = 7837, + [SMALL_STATE(611)] = 7961, + [SMALL_STATE(612)] = 8085, + [SMALL_STATE(613)] = 8209, + [SMALL_STATE(614)] = 8333, + [SMALL_STATE(615)] = 8457, + [SMALL_STATE(616)] = 8581, + [SMALL_STATE(617)] = 8705, + [SMALL_STATE(618)] = 8829, + [SMALL_STATE(619)] = 8953, + [SMALL_STATE(620)] = 9077, + [SMALL_STATE(621)] = 9201, + [SMALL_STATE(622)] = 9325, + [SMALL_STATE(623)] = 9449, + [SMALL_STATE(624)] = 9573, + [SMALL_STATE(625)] = 9697, + [SMALL_STATE(626)] = 9821, + [SMALL_STATE(627)] = 9945, + [SMALL_STATE(628)] = 10069, + [SMALL_STATE(629)] = 10193, + [SMALL_STATE(630)] = 10317, + [SMALL_STATE(631)] = 10441, + [SMALL_STATE(632)] = 10565, + [SMALL_STATE(633)] = 10689, + [SMALL_STATE(634)] = 10813, + [SMALL_STATE(635)] = 10937, + [SMALL_STATE(636)] = 11061, + [SMALL_STATE(637)] = 11185, + [SMALL_STATE(638)] = 11309, + [SMALL_STATE(639)] = 11433, + [SMALL_STATE(640)] = 11557, + [SMALL_STATE(641)] = 11681, + [SMALL_STATE(642)] = 11805, + [SMALL_STATE(643)] = 11929, + [SMALL_STATE(644)] = 12053, [SMALL_STATE(645)] = 12177, [SMALL_STATE(646)] = 12301, [SMALL_STATE(647)] = 12425, @@ -113019,39 +113169,39 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(655)] = 13417, [SMALL_STATE(656)] = 13541, [SMALL_STATE(657)] = 13665, - [SMALL_STATE(658)] = 13789, - [SMALL_STATE(659)] = 13913, - [SMALL_STATE(660)] = 14037, - [SMALL_STATE(661)] = 14161, - [SMALL_STATE(662)] = 14285, - [SMALL_STATE(663)] = 14409, - [SMALL_STATE(664)] = 14533, - [SMALL_STATE(665)] = 14657, - [SMALL_STATE(666)] = 14781, - [SMALL_STATE(667)] = 14905, - [SMALL_STATE(668)] = 15029, - [SMALL_STATE(669)] = 15153, - [SMALL_STATE(670)] = 15277, - [SMALL_STATE(671)] = 15401, - [SMALL_STATE(672)] = 15525, - [SMALL_STATE(673)] = 15649, - [SMALL_STATE(674)] = 15773, - [SMALL_STATE(675)] = 15897, - [SMALL_STATE(676)] = 16021, - [SMALL_STATE(677)] = 16145, - [SMALL_STATE(678)] = 16269, - [SMALL_STATE(679)] = 16393, - [SMALL_STATE(680)] = 16517, - [SMALL_STATE(681)] = 16641, - [SMALL_STATE(682)] = 16765, - [SMALL_STATE(683)] = 16889, - [SMALL_STATE(684)] = 17013, - [SMALL_STATE(685)] = 17137, - [SMALL_STATE(686)] = 17261, - [SMALL_STATE(687)] = 17385, - [SMALL_STATE(688)] = 17509, - [SMALL_STATE(689)] = 17633, - [SMALL_STATE(690)] = 17757, + [SMALL_STATE(658)] = 13791, + [SMALL_STATE(659)] = 13915, + [SMALL_STATE(660)] = 14039, + [SMALL_STATE(661)] = 14163, + [SMALL_STATE(662)] = 14287, + [SMALL_STATE(663)] = 14411, + [SMALL_STATE(664)] = 14535, + [SMALL_STATE(665)] = 14659, + [SMALL_STATE(666)] = 14783, + [SMALL_STATE(667)] = 14907, + [SMALL_STATE(668)] = 15031, + [SMALL_STATE(669)] = 15155, + [SMALL_STATE(670)] = 15279, + [SMALL_STATE(671)] = 15403, + [SMALL_STATE(672)] = 15527, + [SMALL_STATE(673)] = 15651, + [SMALL_STATE(674)] = 15775, + [SMALL_STATE(675)] = 15899, + [SMALL_STATE(676)] = 16023, + [SMALL_STATE(677)] = 16147, + [SMALL_STATE(678)] = 16271, + [SMALL_STATE(679)] = 16395, + [SMALL_STATE(680)] = 16519, + [SMALL_STATE(681)] = 16643, + [SMALL_STATE(682)] = 16767, + [SMALL_STATE(683)] = 16891, + [SMALL_STATE(684)] = 17015, + [SMALL_STATE(685)] = 17139, + [SMALL_STATE(686)] = 17263, + [SMALL_STATE(687)] = 17387, + [SMALL_STATE(688)] = 17511, + [SMALL_STATE(689)] = 17635, + [SMALL_STATE(690)] = 17759, [SMALL_STATE(691)] = 17883, [SMALL_STATE(692)] = 18007, [SMALL_STATE(693)] = 18131, @@ -113068,1714 +113218,1717 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(704)] = 19143, [SMALL_STATE(705)] = 19210, [SMALL_STATE(706)] = 19277, - [SMALL_STATE(707)] = 19333, - [SMALL_STATE(708)] = 19397, - [SMALL_STATE(709)] = 19461, - [SMALL_STATE(710)] = 19517, - [SMALL_STATE(711)] = 19573, - [SMALL_STATE(712)] = 19633, - [SMALL_STATE(713)] = 19693, - [SMALL_STATE(714)] = 19757, - [SMALL_STATE(715)] = 19817, - [SMALL_STATE(716)] = 19873, - [SMALL_STATE(717)] = 19933, + [SMALL_STATE(707)] = 19337, + [SMALL_STATE(708)] = 19401, + [SMALL_STATE(709)] = 19465, + [SMALL_STATE(710)] = 19529, + [SMALL_STATE(711)] = 19589, + [SMALL_STATE(712)] = 19649, + [SMALL_STATE(713)] = 19713, + [SMALL_STATE(714)] = 19769, + [SMALL_STATE(715)] = 19829, + [SMALL_STATE(716)] = 19885, + [SMALL_STATE(717)] = 19941, [SMALL_STATE(718)] = 19997, [SMALL_STATE(719)] = 20053, - [SMALL_STATE(720)] = 20112, + [SMALL_STATE(720)] = 20110, [SMALL_STATE(721)] = 20169, - [SMALL_STATE(722)] = 20224, - [SMALL_STATE(723)] = 20281, + [SMALL_STATE(722)] = 20226, + [SMALL_STATE(723)] = 20283, [SMALL_STATE(724)] = 20338, - [SMALL_STATE(725)] = 20395, + [SMALL_STATE(725)] = 20397, [SMALL_STATE(726)] = 20454, [SMALL_STATE(727)] = 20513, [SMALL_STATE(728)] = 20567, - [SMALL_STATE(729)] = 20621, - [SMALL_STATE(730)] = 20675, + [SMALL_STATE(729)] = 20623, + [SMALL_STATE(730)] = 20677, [SMALL_STATE(731)] = 20731, - [SMALL_STATE(732)] = 20785, - [SMALL_STATE(733)] = 20839, - [SMALL_STATE(734)] = 20893, - [SMALL_STATE(735)] = 20949, - [SMALL_STATE(736)] = 21003, - [SMALL_STATE(737)] = 21057, - [SMALL_STATE(738)] = 21111, - [SMALL_STATE(739)] = 21165, - [SMALL_STATE(740)] = 21227, - [SMALL_STATE(741)] = 21281, - [SMALL_STATE(742)] = 21335, - [SMALL_STATE(743)] = 21389, - [SMALL_STATE(744)] = 21447, - [SMALL_STATE(745)] = 21501, - [SMALL_STATE(746)] = 21555, - [SMALL_STATE(747)] = 21609, - [SMALL_STATE(748)] = 21663, - [SMALL_STATE(749)] = 21717, - [SMALL_STATE(750)] = 21771, - [SMALL_STATE(751)] = 21825, - [SMALL_STATE(752)] = 21879, - [SMALL_STATE(753)] = 21933, - [SMALL_STATE(754)] = 21987, - [SMALL_STATE(755)] = 22041, - [SMALL_STATE(756)] = 22095, - [SMALL_STATE(757)] = 22149, - [SMALL_STATE(758)] = 22211, - [SMALL_STATE(759)] = 22265, - [SMALL_STATE(760)] = 22319, - [SMALL_STATE(761)] = 22373, - [SMALL_STATE(762)] = 22427, - [SMALL_STATE(763)] = 22481, - [SMALL_STATE(764)] = 22535, - [SMALL_STATE(765)] = 22589, - [SMALL_STATE(766)] = 22643, - [SMALL_STATE(767)] = 22697, - [SMALL_STATE(768)] = 22751, - [SMALL_STATE(769)] = 22807, - [SMALL_STATE(770)] = 22861, - [SMALL_STATE(771)] = 22915, - [SMALL_STATE(772)] = 22969, - [SMALL_STATE(773)] = 23023, - [SMALL_STATE(774)] = 23077, - [SMALL_STATE(775)] = 23139, - [SMALL_STATE(776)] = 23193, - [SMALL_STATE(777)] = 23247, - [SMALL_STATE(778)] = 23301, - [SMALL_STATE(779)] = 23357, - [SMALL_STATE(780)] = 23413, - [SMALL_STATE(781)] = 23469, - [SMALL_STATE(782)] = 23525, - [SMALL_STATE(783)] = 23579, - [SMALL_STATE(784)] = 23633, - [SMALL_STATE(785)] = 23695, - [SMALL_STATE(786)] = 23749, - [SMALL_STATE(787)] = 23803, - [SMALL_STATE(788)] = 23857, - [SMALL_STATE(789)] = 23911, - [SMALL_STATE(790)] = 23965, - [SMALL_STATE(791)] = 24019, - [SMALL_STATE(792)] = 24073, - [SMALL_STATE(793)] = 24127, - [SMALL_STATE(794)] = 24181, - [SMALL_STATE(795)] = 24235, - [SMALL_STATE(796)] = 24289, - [SMALL_STATE(797)] = 24343, - [SMALL_STATE(798)] = 24397, - [SMALL_STATE(799)] = 24451, - [SMALL_STATE(800)] = 24507, - [SMALL_STATE(801)] = 24561, - [SMALL_STATE(802)] = 24615, - [SMALL_STATE(803)] = 24669, - [SMALL_STATE(804)] = 24723, - [SMALL_STATE(805)] = 24777, - [SMALL_STATE(806)] = 24831, - [SMALL_STATE(807)] = 24885, - [SMALL_STATE(808)] = 24939, - [SMALL_STATE(809)] = 24993, - [SMALL_STATE(810)] = 25047, - [SMALL_STATE(811)] = 25101, - [SMALL_STATE(812)] = 25155, - [SMALL_STATE(813)] = 25209, - [SMALL_STATE(814)] = 25263, - [SMALL_STATE(815)] = 25317, - [SMALL_STATE(816)] = 25371, - [SMALL_STATE(817)] = 25425, - [SMALL_STATE(818)] = 25479, - [SMALL_STATE(819)] = 25533, - [SMALL_STATE(820)] = 25587, - [SMALL_STATE(821)] = 25641, - [SMALL_STATE(822)] = 25695, - [SMALL_STATE(823)] = 25749, - [SMALL_STATE(824)] = 25803, - [SMALL_STATE(825)] = 25857, - [SMALL_STATE(826)] = 25911, - [SMALL_STATE(827)] = 25965, - [SMALL_STATE(828)] = 26019, - [SMALL_STATE(829)] = 26073, - [SMALL_STATE(830)] = 26127, - [SMALL_STATE(831)] = 26181, - [SMALL_STATE(832)] = 26235, - [SMALL_STATE(833)] = 26289, - [SMALL_STATE(834)] = 26343, - [SMALL_STATE(835)] = 26397, - [SMALL_STATE(836)] = 26451, - [SMALL_STATE(837)] = 26505, - [SMALL_STATE(838)] = 26559, - [SMALL_STATE(839)] = 26613, - [SMALL_STATE(840)] = 26667, - [SMALL_STATE(841)] = 26721, - [SMALL_STATE(842)] = 26775, - [SMALL_STATE(843)] = 26829, - [SMALL_STATE(844)] = 26883, - [SMALL_STATE(845)] = 26937, - [SMALL_STATE(846)] = 26991, - [SMALL_STATE(847)] = 27045, - [SMALL_STATE(848)] = 27099, - [SMALL_STATE(849)] = 27153, - [SMALL_STATE(850)] = 27207, - [SMALL_STATE(851)] = 27263, - [SMALL_STATE(852)] = 27317, - [SMALL_STATE(853)] = 27371, - [SMALL_STATE(854)] = 27425, - [SMALL_STATE(855)] = 27479, - [SMALL_STATE(856)] = 27533, - [SMALL_STATE(857)] = 27587, - [SMALL_STATE(858)] = 27641, - [SMALL_STATE(859)] = 27695, - [SMALL_STATE(860)] = 27749, - [SMALL_STATE(861)] = 27803, - [SMALL_STATE(862)] = 27857, - [SMALL_STATE(863)] = 27911, - [SMALL_STATE(864)] = 27965, - [SMALL_STATE(865)] = 28021, - [SMALL_STATE(866)] = 28075, - [SMALL_STATE(867)] = 28129, - [SMALL_STATE(868)] = 28183, - [SMALL_STATE(869)] = 28237, - [SMALL_STATE(870)] = 28291, - [SMALL_STATE(871)] = 28345, - [SMALL_STATE(872)] = 28399, - [SMALL_STATE(873)] = 28453, - [SMALL_STATE(874)] = 28509, - [SMALL_STATE(875)] = 28563, - [SMALL_STATE(876)] = 28619, - [SMALL_STATE(877)] = 28673, - [SMALL_STATE(878)] = 28727, - [SMALL_STATE(879)] = 28781, - [SMALL_STATE(880)] = 28835, - [SMALL_STATE(881)] = 28889, - [SMALL_STATE(882)] = 28945, - [SMALL_STATE(883)] = 28999, - [SMALL_STATE(884)] = 29055, - [SMALL_STATE(885)] = 29109, - [SMALL_STATE(886)] = 29163, - [SMALL_STATE(887)] = 29217, - [SMALL_STATE(888)] = 29271, - [SMALL_STATE(889)] = 29325, - [SMALL_STATE(890)] = 29379, - [SMALL_STATE(891)] = 29433, - [SMALL_STATE(892)] = 29489, - [SMALL_STATE(893)] = 29543, - [SMALL_STATE(894)] = 29597, - [SMALL_STATE(895)] = 29651, - [SMALL_STATE(896)] = 29705, - [SMALL_STATE(897)] = 29759, - [SMALL_STATE(898)] = 29813, - [SMALL_STATE(899)] = 29867, - [SMALL_STATE(900)] = 29921, - [SMALL_STATE(901)] = 29977, - [SMALL_STATE(902)] = 30031, - [SMALL_STATE(903)] = 30085, - [SMALL_STATE(904)] = 30139, - [SMALL_STATE(905)] = 30193, - [SMALL_STATE(906)] = 30247, - [SMALL_STATE(907)] = 30301, - [SMALL_STATE(908)] = 30355, - [SMALL_STATE(909)] = 30409, - [SMALL_STATE(910)] = 30463, - [SMALL_STATE(911)] = 30517, - [SMALL_STATE(912)] = 30571, - [SMALL_STATE(913)] = 30625, - [SMALL_STATE(914)] = 30679, - [SMALL_STATE(915)] = 30733, - [SMALL_STATE(916)] = 30787, - [SMALL_STATE(917)] = 30841, - [SMALL_STATE(918)] = 30895, - [SMALL_STATE(919)] = 30949, - [SMALL_STATE(920)] = 31003, - [SMALL_STATE(921)] = 31057, - [SMALL_STATE(922)] = 31111, - [SMALL_STATE(923)] = 31165, - [SMALL_STATE(924)] = 31219, - [SMALL_STATE(925)] = 31273, - [SMALL_STATE(926)] = 31327, - [SMALL_STATE(927)] = 31381, - [SMALL_STATE(928)] = 31435, - [SMALL_STATE(929)] = 31489, - [SMALL_STATE(930)] = 31543, - [SMALL_STATE(931)] = 31597, - [SMALL_STATE(932)] = 31651, - [SMALL_STATE(933)] = 31705, - [SMALL_STATE(934)] = 31759, - [SMALL_STATE(935)] = 31813, - [SMALL_STATE(936)] = 31867, - [SMALL_STATE(937)] = 31921, - [SMALL_STATE(938)] = 31975, - [SMALL_STATE(939)] = 32029, - [SMALL_STATE(940)] = 32083, - [SMALL_STATE(941)] = 32137, - [SMALL_STATE(942)] = 32191, - [SMALL_STATE(943)] = 32245, - [SMALL_STATE(944)] = 32299, - [SMALL_STATE(945)] = 32353, - [SMALL_STATE(946)] = 32407, - [SMALL_STATE(947)] = 32461, - [SMALL_STATE(948)] = 32515, - [SMALL_STATE(949)] = 32569, - [SMALL_STATE(950)] = 32623, - [SMALL_STATE(951)] = 32677, - [SMALL_STATE(952)] = 32731, - [SMALL_STATE(953)] = 32785, - [SMALL_STATE(954)] = 32839, - [SMALL_STATE(955)] = 32893, - [SMALL_STATE(956)] = 32947, - [SMALL_STATE(957)] = 33001, - [SMALL_STATE(958)] = 33054, - [SMALL_STATE(959)] = 33107, - [SMALL_STATE(960)] = 33160, - [SMALL_STATE(961)] = 33213, - [SMALL_STATE(962)] = 33268, - [SMALL_STATE(963)] = 33321, - [SMALL_STATE(964)] = 33384, - [SMALL_STATE(965)] = 33437, - [SMALL_STATE(966)] = 33490, - [SMALL_STATE(967)] = 33543, - [SMALL_STATE(968)] = 33596, - [SMALL_STATE(969)] = 33649, - [SMALL_STATE(970)] = 33702, - [SMALL_STATE(971)] = 33755, - [SMALL_STATE(972)] = 33840, - [SMALL_STATE(973)] = 33925, - [SMALL_STATE(974)] = 33978, - [SMALL_STATE(975)] = 34031, - [SMALL_STATE(976)] = 34084, - [SMALL_STATE(977)] = 34157, - [SMALL_STATE(978)] = 34210, - [SMALL_STATE(979)] = 34277, - [SMALL_STATE(980)] = 34330, - [SMALL_STATE(981)] = 34383, - [SMALL_STATE(982)] = 34468, - [SMALL_STATE(983)] = 34521, - [SMALL_STATE(984)] = 34574, - [SMALL_STATE(985)] = 34627, - [SMALL_STATE(986)] = 34680, - [SMALL_STATE(987)] = 34733, - [SMALL_STATE(988)] = 34786, - [SMALL_STATE(989)] = 34867, - [SMALL_STATE(990)] = 34920, - [SMALL_STATE(991)] = 34973, - [SMALL_STATE(992)] = 35026, - [SMALL_STATE(993)] = 35079, - [SMALL_STATE(994)] = 35132, - [SMALL_STATE(995)] = 35213, - [SMALL_STATE(996)] = 35266, - [SMALL_STATE(997)] = 35319, - [SMALL_STATE(998)] = 35372, - [SMALL_STATE(999)] = 35425, - [SMALL_STATE(1000)] = 35478, - [SMALL_STATE(1001)] = 35531, - [SMALL_STATE(1002)] = 35584, - [SMALL_STATE(1003)] = 35637, - [SMALL_STATE(1004)] = 35690, - [SMALL_STATE(1005)] = 35767, - [SMALL_STATE(1006)] = 35820, - [SMALL_STATE(1007)] = 35899, - [SMALL_STATE(1008)] = 35952, - [SMALL_STATE(1009)] = 36005, - [SMALL_STATE(1010)] = 36058, - [SMALL_STATE(1011)] = 36149, - [SMALL_STATE(1012)] = 36202, - [SMALL_STATE(1013)] = 36255, - [SMALL_STATE(1014)] = 36308, - [SMALL_STATE(1015)] = 36361, - [SMALL_STATE(1016)] = 36432, - [SMALL_STATE(1017)] = 36485, - [SMALL_STATE(1018)] = 36538, - [SMALL_STATE(1019)] = 36623, - [SMALL_STATE(1020)] = 36676, - [SMALL_STATE(1021)] = 36729, - [SMALL_STATE(1022)] = 36798, - [SMALL_STATE(1023)] = 36863, - [SMALL_STATE(1024)] = 36916, - [SMALL_STATE(1025)] = 36971, - [SMALL_STATE(1026)] = 37024, - [SMALL_STATE(1027)] = 37077, - [SMALL_STATE(1028)] = 37130, - [SMALL_STATE(1029)] = 37183, - [SMALL_STATE(1030)] = 37236, - [SMALL_STATE(1031)] = 37327, - [SMALL_STATE(1032)] = 37380, - [SMALL_STATE(1033)] = 37433, - [SMALL_STATE(1034)] = 37486, - [SMALL_STATE(1035)] = 37539, - [SMALL_STATE(1036)] = 37624, - [SMALL_STATE(1037)] = 37677, - [SMALL_STATE(1038)] = 37730, - [SMALL_STATE(1039)] = 37783, - [SMALL_STATE(1040)] = 37836, - [SMALL_STATE(1041)] = 37889, - [SMALL_STATE(1042)] = 37942, - [SMALL_STATE(1043)] = 37995, - [SMALL_STATE(1044)] = 38048, - [SMALL_STATE(1045)] = 38101, - [SMALL_STATE(1046)] = 38154, - [SMALL_STATE(1047)] = 38207, - [SMALL_STATE(1048)] = 38260, - [SMALL_STATE(1049)] = 38313, - [SMALL_STATE(1050)] = 38366, - [SMALL_STATE(1051)] = 38419, - [SMALL_STATE(1052)] = 38472, - [SMALL_STATE(1053)] = 38525, - [SMALL_STATE(1054)] = 38578, - [SMALL_STATE(1055)] = 38631, - [SMALL_STATE(1056)] = 38684, - [SMALL_STATE(1057)] = 38737, - [SMALL_STATE(1058)] = 38790, - [SMALL_STATE(1059)] = 38843, - [SMALL_STATE(1060)] = 38896, - [SMALL_STATE(1061)] = 38949, - [SMALL_STATE(1062)] = 39002, - [SMALL_STATE(1063)] = 39055, - [SMALL_STATE(1064)] = 39108, - [SMALL_STATE(1065)] = 39160, - [SMALL_STATE(1066)] = 39212, - [SMALL_STATE(1067)] = 39264, - [SMALL_STATE(1068)] = 39316, - [SMALL_STATE(1069)] = 39372, - [SMALL_STATE(1070)] = 39432, - [SMALL_STATE(1071)] = 39484, - [SMALL_STATE(1072)] = 39536, - [SMALL_STATE(1073)] = 39631, - [SMALL_STATE(1074)] = 39716, - [SMALL_STATE(1075)] = 39801, - [SMALL_STATE(1076)] = 39854, - [SMALL_STATE(1077)] = 39907, - [SMALL_STATE(1078)] = 40002, - [SMALL_STATE(1079)] = 40086, - [SMALL_STATE(1080)] = 40136, - [SMALL_STATE(1081)] = 40192, - [SMALL_STATE(1082)] = 40284, - [SMALL_STATE(1083)] = 40376, - [SMALL_STATE(1084)] = 40426, - [SMALL_STATE(1085)] = 40476, - [SMALL_STATE(1086)] = 40560, - [SMALL_STATE(1087)] = 40644, - [SMALL_STATE(1088)] = 40694, - [SMALL_STATE(1089)] = 40748, - [SMALL_STATE(1090)] = 40832, - [SMALL_STATE(1091)] = 40921, - [SMALL_STATE(1092)] = 41010, - [SMALL_STATE(1093)] = 41059, - [SMALL_STATE(1094)] = 41148, - [SMALL_STATE(1095)] = 41235, - [SMALL_STATE(1096)] = 41286, - [SMALL_STATE(1097)] = 41339, - [SMALL_STATE(1098)] = 41428, - [SMALL_STATE(1099)] = 41517, - [SMALL_STATE(1100)] = 41566, - [SMALL_STATE(1101)] = 41653, - [SMALL_STATE(1102)] = 41742, - [SMALL_STATE(1103)] = 41831, - [SMALL_STATE(1104)] = 41920, - [SMALL_STATE(1105)] = 42009, - [SMALL_STATE(1106)] = 42086, - [SMALL_STATE(1107)] = 42175, - [SMALL_STATE(1108)] = 42224, - [SMALL_STATE(1109)] = 42311, - [SMALL_STATE(1110)] = 42400, - [SMALL_STATE(1111)] = 42489, - [SMALL_STATE(1112)] = 42576, - [SMALL_STATE(1113)] = 42663, - [SMALL_STATE(1114)] = 42752, - [SMALL_STATE(1115)] = 42833, - [SMALL_STATE(1116)] = 42920, - [SMALL_STATE(1117)] = 43007, - [SMALL_STATE(1118)] = 43096, - [SMALL_STATE(1119)] = 43185, - [SMALL_STATE(1120)] = 43274, - [SMALL_STATE(1121)] = 43361, - [SMALL_STATE(1122)] = 43450, - [SMALL_STATE(1123)] = 43539, - [SMALL_STATE(1124)] = 43628, - [SMALL_STATE(1125)] = 43717, - [SMALL_STATE(1126)] = 43806, - [SMALL_STATE(1127)] = 43895, - [SMALL_STATE(1128)] = 43984, - [SMALL_STATE(1129)] = 44073, - [SMALL_STATE(1130)] = 44162, - [SMALL_STATE(1131)] = 44251, - [SMALL_STATE(1132)] = 44340, - [SMALL_STATE(1133)] = 44389, - [SMALL_STATE(1134)] = 44478, - [SMALL_STATE(1135)] = 44567, - [SMALL_STATE(1136)] = 44656, - [SMALL_STATE(1137)] = 44745, - [SMALL_STATE(1138)] = 44826, - [SMALL_STATE(1139)] = 44915, - [SMALL_STATE(1140)] = 45004, - [SMALL_STATE(1141)] = 45091, - [SMALL_STATE(1142)] = 45178, - [SMALL_STATE(1143)] = 45267, - [SMALL_STATE(1144)] = 45356, - [SMALL_STATE(1145)] = 45445, - [SMALL_STATE(1146)] = 45534, - [SMALL_STATE(1147)] = 45623, - [SMALL_STATE(1148)] = 45712, - [SMALL_STATE(1149)] = 45801, - [SMALL_STATE(1150)] = 45890, - [SMALL_STATE(1151)] = 45979, - [SMALL_STATE(1152)] = 46068, - [SMALL_STATE(1153)] = 46157, - [SMALL_STATE(1154)] = 46246, - [SMALL_STATE(1155)] = 46326, - [SMALL_STATE(1156)] = 46400, - [SMALL_STATE(1157)] = 46486, - [SMALL_STATE(1158)] = 46572, - [SMALL_STATE(1159)] = 46658, - [SMALL_STATE(1160)] = 46718, - [SMALL_STATE(1161)] = 46804, - [SMALL_STATE(1162)] = 46890, - [SMALL_STATE(1163)] = 46970, - [SMALL_STATE(1164)] = 47020, - [SMALL_STATE(1165)] = 47106, - [SMALL_STATE(1166)] = 47192, - [SMALL_STATE(1167)] = 47272, - [SMALL_STATE(1168)] = 47358, - [SMALL_STATE(1169)] = 47444, - [SMALL_STATE(1170)] = 47530, - [SMALL_STATE(1171)] = 47616, - [SMALL_STATE(1172)] = 47702, - [SMALL_STATE(1173)] = 47782, - [SMALL_STATE(1174)] = 47856, - [SMALL_STATE(1175)] = 47942, - [SMALL_STATE(1176)] = 48028, - [SMALL_STATE(1177)] = 48114, - [SMALL_STATE(1178)] = 48200, - [SMALL_STATE(1179)] = 48286, - [SMALL_STATE(1180)] = 48336, - [SMALL_STATE(1181)] = 48410, - [SMALL_STATE(1182)] = 48484, - [SMALL_STATE(1183)] = 48552, - [SMALL_STATE(1184)] = 48610, - [SMALL_STATE(1185)] = 48672, - [SMALL_STATE(1186)] = 48722, - [SMALL_STATE(1187)] = 48798, - [SMALL_STATE(1188)] = 48878, - [SMALL_STATE(1189)] = 48964, - [SMALL_STATE(1190)] = 49050, - [SMALL_STATE(1191)] = 49116, - [SMALL_STATE(1192)] = 49164, - [SMALL_STATE(1193)] = 49214, - [SMALL_STATE(1194)] = 49300, - [SMALL_STATE(1195)] = 49374, - [SMALL_STATE(1196)] = 49460, - [SMALL_STATE(1197)] = 49546, - [SMALL_STATE(1198)] = 49632, - [SMALL_STATE(1199)] = 49718, - [SMALL_STATE(1200)] = 49768, - [SMALL_STATE(1201)] = 49854, - [SMALL_STATE(1202)] = 49940, - [SMALL_STATE(1203)] = 50026, - [SMALL_STATE(1204)] = 50098, - [SMALL_STATE(1205)] = 50146, - [SMALL_STATE(1206)] = 50232, - [SMALL_STATE(1207)] = 50318, - [SMALL_STATE(1208)] = 50382, - [SMALL_STATE(1209)] = 50432, - [SMALL_STATE(1210)] = 50480, - [SMALL_STATE(1211)] = 50528, - [SMALL_STATE(1212)] = 50576, - [SMALL_STATE(1213)] = 50652, - [SMALL_STATE(1214)] = 50738, - [SMALL_STATE(1215)] = 50824, - [SMALL_STATE(1216)] = 50910, - [SMALL_STATE(1217)] = 50996, - [SMALL_STATE(1218)] = 51067, - [SMALL_STATE(1219)] = 51142, - [SMALL_STATE(1220)] = 51217, - [SMALL_STATE(1221)] = 51286, - [SMALL_STATE(1222)] = 51352, - [SMALL_STATE(1223)] = 51418, - [SMALL_STATE(1224)] = 51481, - [SMALL_STATE(1225)] = 51544, - [SMALL_STATE(1226)] = 51607, - [SMALL_STATE(1227)] = 51670, - [SMALL_STATE(1228)] = 51733, - [SMALL_STATE(1229)] = 51772, - [SMALL_STATE(1230)] = 51811, - [SMALL_STATE(1231)] = 51850, - [SMALL_STATE(1232)] = 51903, - [SMALL_STATE(1233)] = 51956, - [SMALL_STATE(1234)] = 52009, - [SMALL_STATE(1235)] = 52062, - [SMALL_STATE(1236)] = 52115, - [SMALL_STATE(1237)] = 52168, - [SMALL_STATE(1238)] = 52221, - [SMALL_STATE(1239)] = 52271, - [SMALL_STATE(1240)] = 52321, - [SMALL_STATE(1241)] = 52351, - [SMALL_STATE(1242)] = 52381, - [SMALL_STATE(1243)] = 52423, - [SMALL_STATE(1244)] = 52463, - [SMALL_STATE(1245)] = 52492, - [SMALL_STATE(1246)] = 52521, - [SMALL_STATE(1247)] = 52550, - [SMALL_STATE(1248)] = 52579, - [SMALL_STATE(1249)] = 52608, - [SMALL_STATE(1250)] = 52637, - [SMALL_STATE(1251)] = 52666, - [SMALL_STATE(1252)] = 52695, - [SMALL_STATE(1253)] = 52732, - [SMALL_STATE(1254)] = 52769, - [SMALL_STATE(1255)] = 52801, - [SMALL_STATE(1256)] = 52855, - [SMALL_STATE(1257)] = 52887, - [SMALL_STATE(1258)] = 52941, - [SMALL_STATE(1259)] = 52973, - [SMALL_STATE(1260)] = 52996, - [SMALL_STATE(1261)] = 53021, - [SMALL_STATE(1262)] = 53045, - [SMALL_STATE(1263)] = 53069, - [SMALL_STATE(1264)] = 53093, - [SMALL_STATE(1265)] = 53117, - [SMALL_STATE(1266)] = 53139, - [SMALL_STATE(1267)] = 53163, - [SMALL_STATE(1268)] = 53187, - [SMALL_STATE(1269)] = 53217, - [SMALL_STATE(1270)] = 53241, - [SMALL_STATE(1271)] = 53263, - [SMALL_STATE(1272)] = 53287, - [SMALL_STATE(1273)] = 53311, - [SMALL_STATE(1274)] = 53355, - [SMALL_STATE(1275)] = 53401, - [SMALL_STATE(1276)] = 53423, - [SMALL_STATE(1277)] = 53467, - [SMALL_STATE(1278)] = 53491, - [SMALL_STATE(1279)] = 53513, - [SMALL_STATE(1280)] = 53538, - [SMALL_STATE(1281)] = 53563, - [SMALL_STATE(1282)] = 53608, - [SMALL_STATE(1283)] = 53629, - [SMALL_STATE(1284)] = 53652, - [SMALL_STATE(1285)] = 53675, - [SMALL_STATE(1286)] = 53696, - [SMALL_STATE(1287)] = 53719, - [SMALL_STATE(1288)] = 53740, - [SMALL_STATE(1289)] = 53767, - [SMALL_STATE(1290)] = 53788, - [SMALL_STATE(1291)] = 53813, - [SMALL_STATE(1292)] = 53836, - [SMALL_STATE(1293)] = 53859, - [SMALL_STATE(1294)] = 53882, - [SMALL_STATE(1295)] = 53907, - [SMALL_STATE(1296)] = 53928, - [SMALL_STATE(1297)] = 53953, - [SMALL_STATE(1298)] = 53976, - [SMALL_STATE(1299)] = 54001, - [SMALL_STATE(1300)] = 54024, - [SMALL_STATE(1301)] = 54044, - [SMALL_STATE(1302)] = 54064, - [SMALL_STATE(1303)] = 54086, - [SMALL_STATE(1304)] = 54106, - [SMALL_STATE(1305)] = 54126, - [SMALL_STATE(1306)] = 54148, - [SMALL_STATE(1307)] = 54168, - [SMALL_STATE(1308)] = 54188, - [SMALL_STATE(1309)] = 54208, - [SMALL_STATE(1310)] = 54228, - [SMALL_STATE(1311)] = 54248, - [SMALL_STATE(1312)] = 54268, - [SMALL_STATE(1313)] = 54288, - [SMALL_STATE(1314)] = 54308, - [SMALL_STATE(1315)] = 54328, - [SMALL_STATE(1316)] = 54348, - [SMALL_STATE(1317)] = 54368, - [SMALL_STATE(1318)] = 54388, - [SMALL_STATE(1319)] = 54408, - [SMALL_STATE(1320)] = 54428, - [SMALL_STATE(1321)] = 54448, - [SMALL_STATE(1322)] = 54468, - [SMALL_STATE(1323)] = 54488, - [SMALL_STATE(1324)] = 54508, - [SMALL_STATE(1325)] = 54532, - [SMALL_STATE(1326)] = 54552, - [SMALL_STATE(1327)] = 54572, - [SMALL_STATE(1328)] = 54592, - [SMALL_STATE(1329)] = 54614, - [SMALL_STATE(1330)] = 54634, - [SMALL_STATE(1331)] = 54657, - [SMALL_STATE(1332)] = 54680, - [SMALL_STATE(1333)] = 54703, - [SMALL_STATE(1334)] = 54726, - [SMALL_STATE(1335)] = 54749, - [SMALL_STATE(1336)] = 54774, - [SMALL_STATE(1337)] = 54797, - [SMALL_STATE(1338)] = 54820, - [SMALL_STATE(1339)] = 54845, - [SMALL_STATE(1340)] = 54868, - [SMALL_STATE(1341)] = 54903, - [SMALL_STATE(1342)] = 54928, - [SMALL_STATE(1343)] = 54953, - [SMALL_STATE(1344)] = 54978, - [SMALL_STATE(1345)] = 54999, - [SMALL_STATE(1346)] = 55020, - [SMALL_STATE(1347)] = 55043, - [SMALL_STATE(1348)] = 55066, - [SMALL_STATE(1349)] = 55091, - [SMALL_STATE(1350)] = 55114, - [SMALL_STATE(1351)] = 55139, - [SMALL_STATE(1352)] = 55164, - [SMALL_STATE(1353)] = 55187, - [SMALL_STATE(1354)] = 55208, - [SMALL_STATE(1355)] = 55232, - [SMALL_STATE(1356)] = 55252, - [SMALL_STATE(1357)] = 55272, - [SMALL_STATE(1358)] = 55292, - [SMALL_STATE(1359)] = 55316, - [SMALL_STATE(1360)] = 55336, - [SMALL_STATE(1361)] = 55356, - [SMALL_STATE(1362)] = 55376, - [SMALL_STATE(1363)] = 55396, - [SMALL_STATE(1364)] = 55416, - [SMALL_STATE(1365)] = 55436, - [SMALL_STATE(1366)] = 55460, - [SMALL_STATE(1367)] = 55480, - [SMALL_STATE(1368)] = 55500, - [SMALL_STATE(1369)] = 55520, - [SMALL_STATE(1370)] = 55540, - [SMALL_STATE(1371)] = 55560, - [SMALL_STATE(1372)] = 55580, - [SMALL_STATE(1373)] = 55600, - [SMALL_STATE(1374)] = 55620, - [SMALL_STATE(1375)] = 55640, - [SMALL_STATE(1376)] = 55660, - [SMALL_STATE(1377)] = 55680, - [SMALL_STATE(1378)] = 55700, - [SMALL_STATE(1379)] = 55720, - [SMALL_STATE(1380)] = 55740, - [SMALL_STATE(1381)] = 55760, - [SMALL_STATE(1382)] = 55780, - [SMALL_STATE(1383)] = 55800, - [SMALL_STATE(1384)] = 55824, - [SMALL_STATE(1385)] = 55844, - [SMALL_STATE(1386)] = 55864, - [SMALL_STATE(1387)] = 55884, - [SMALL_STATE(1388)] = 55904, - [SMALL_STATE(1389)] = 55924, - [SMALL_STATE(1390)] = 55955, - [SMALL_STATE(1391)] = 55982, - [SMALL_STATE(1392)] = 56007, - [SMALL_STATE(1393)] = 56038, - [SMALL_STATE(1394)] = 56071, - [SMALL_STATE(1395)] = 56102, - [SMALL_STATE(1396)] = 56133, - [SMALL_STATE(1397)] = 56162, - [SMALL_STATE(1398)] = 56195, - [SMALL_STATE(1399)] = 56228, - [SMALL_STATE(1400)] = 56259, - [SMALL_STATE(1401)] = 56290, - [SMALL_STATE(1402)] = 56321, - [SMALL_STATE(1403)] = 56346, - [SMALL_STATE(1404)] = 56377, - [SMALL_STATE(1405)] = 56410, - [SMALL_STATE(1406)] = 56441, - [SMALL_STATE(1407)] = 56466, - [SMALL_STATE(1408)] = 56496, - [SMALL_STATE(1409)] = 56526, - [SMALL_STATE(1410)] = 56556, - [SMALL_STATE(1411)] = 56586, - [SMALL_STATE(1412)] = 56608, - [SMALL_STATE(1413)] = 56638, - [SMALL_STATE(1414)] = 56664, - [SMALL_STATE(1415)] = 56694, - [SMALL_STATE(1416)] = 56724, - [SMALL_STATE(1417)] = 56754, - [SMALL_STATE(1418)] = 56784, - [SMALL_STATE(1419)] = 56814, - [SMALL_STATE(1420)] = 56844, - [SMALL_STATE(1421)] = 56866, - [SMALL_STATE(1422)] = 56892, - [SMALL_STATE(1423)] = 56924, - [SMALL_STATE(1424)] = 56956, - [SMALL_STATE(1425)] = 56986, - [SMALL_STATE(1426)] = 57016, - [SMALL_STATE(1427)] = 57038, - [SMALL_STATE(1428)] = 57068, - [SMALL_STATE(1429)] = 57098, - [SMALL_STATE(1430)] = 57124, - [SMALL_STATE(1431)] = 57154, - [SMALL_STATE(1432)] = 57184, - [SMALL_STATE(1433)] = 57206, - [SMALL_STATE(1434)] = 57236, - [SMALL_STATE(1435)] = 57258, - [SMALL_STATE(1436)] = 57290, - [SMALL_STATE(1437)] = 57320, - [SMALL_STATE(1438)] = 57350, - [SMALL_STATE(1439)] = 57382, - [SMALL_STATE(1440)] = 57404, - [SMALL_STATE(1441)] = 57434, - [SMALL_STATE(1442)] = 57459, - [SMALL_STATE(1443)] = 57482, - [SMALL_STATE(1444)] = 57505, - [SMALL_STATE(1445)] = 57534, - [SMALL_STATE(1446)] = 57563, - [SMALL_STATE(1447)] = 57590, - [SMALL_STATE(1448)] = 57609, - [SMALL_STATE(1449)] = 57628, - [SMALL_STATE(1450)] = 57655, - [SMALL_STATE(1451)] = 57682, - [SMALL_STATE(1452)] = 57705, - [SMALL_STATE(1453)] = 57732, - [SMALL_STATE(1454)] = 57753, - [SMALL_STATE(1455)] = 57778, - [SMALL_STATE(1456)] = 57803, - [SMALL_STATE(1457)] = 57832, - [SMALL_STATE(1458)] = 57857, - [SMALL_STATE(1459)] = 57886, - [SMALL_STATE(1460)] = 57915, - [SMALL_STATE(1461)] = 57934, - [SMALL_STATE(1462)] = 57961, - [SMALL_STATE(1463)] = 57980, - [SMALL_STATE(1464)] = 57999, - [SMALL_STATE(1465)] = 58026, - [SMALL_STATE(1466)] = 58053, - [SMALL_STATE(1467)] = 58080, - [SMALL_STATE(1468)] = 58107, - [SMALL_STATE(1469)] = 58136, - [SMALL_STATE(1470)] = 58161, - [SMALL_STATE(1471)] = 58188, - [SMALL_STATE(1472)] = 58207, - [SMALL_STATE(1473)] = 58234, - [SMALL_STATE(1474)] = 58257, - [SMALL_STATE(1475)] = 58284, - [SMALL_STATE(1476)] = 58309, - [SMALL_STATE(1477)] = 58334, - [SMALL_STATE(1478)] = 58361, - [SMALL_STATE(1479)] = 58388, - [SMALL_STATE(1480)] = 58411, - [SMALL_STATE(1481)] = 58436, - [SMALL_STATE(1482)] = 58461, - [SMALL_STATE(1483)] = 58480, - [SMALL_STATE(1484)] = 58495, - [SMALL_STATE(1485)] = 58514, - [SMALL_STATE(1486)] = 58541, - [SMALL_STATE(1487)] = 58562, - [SMALL_STATE(1488)] = 58576, - [SMALL_STATE(1489)] = 58598, - [SMALL_STATE(1490)] = 58614, - [SMALL_STATE(1491)] = 58640, - [SMALL_STATE(1492)] = 58656, - [SMALL_STATE(1493)] = 58672, - [SMALL_STATE(1494)] = 58698, - [SMALL_STATE(1495)] = 58724, - [SMALL_STATE(1496)] = 58750, - [SMALL_STATE(1497)] = 58772, - [SMALL_STATE(1498)] = 58798, - [SMALL_STATE(1499)] = 58824, - [SMALL_STATE(1500)] = 58840, - [SMALL_STATE(1501)] = 58866, - [SMALL_STATE(1502)] = 58882, - [SMALL_STATE(1503)] = 58896, - [SMALL_STATE(1504)] = 58910, - [SMALL_STATE(1505)] = 58936, - [SMALL_STATE(1506)] = 58960, - [SMALL_STATE(1507)] = 58986, - [SMALL_STATE(1508)] = 59000, - [SMALL_STATE(1509)] = 59024, - [SMALL_STATE(1510)] = 59038, - [SMALL_STATE(1511)] = 59054, - [SMALL_STATE(1512)] = 59078, - [SMALL_STATE(1513)] = 59102, - [SMALL_STATE(1514)] = 59128, - [SMALL_STATE(1515)] = 59154, - [SMALL_STATE(1516)] = 59168, - [SMALL_STATE(1517)] = 59194, - [SMALL_STATE(1518)] = 59216, - [SMALL_STATE(1519)] = 59232, - [SMALL_STATE(1520)] = 59254, - [SMALL_STATE(1521)] = 59276, - [SMALL_STATE(1522)] = 59300, - [SMALL_STATE(1523)] = 59314, - [SMALL_STATE(1524)] = 59336, - [SMALL_STATE(1525)] = 59359, - [SMALL_STATE(1526)] = 59382, - [SMALL_STATE(1527)] = 59405, - [SMALL_STATE(1528)] = 59428, - [SMALL_STATE(1529)] = 59451, - [SMALL_STATE(1530)] = 59474, - [SMALL_STATE(1531)] = 59497, - [SMALL_STATE(1532)] = 59520, - [SMALL_STATE(1533)] = 59543, - [SMALL_STATE(1534)] = 59566, - [SMALL_STATE(1535)] = 59589, - [SMALL_STATE(1536)] = 59612, - [SMALL_STATE(1537)] = 59635, - [SMALL_STATE(1538)] = 59658, - [SMALL_STATE(1539)] = 59681, - [SMALL_STATE(1540)] = 59704, - [SMALL_STATE(1541)] = 59727, - [SMALL_STATE(1542)] = 59750, - [SMALL_STATE(1543)] = 59773, - [SMALL_STATE(1544)] = 59796, - [SMALL_STATE(1545)] = 59819, - [SMALL_STATE(1546)] = 59842, - [SMALL_STATE(1547)] = 59865, - [SMALL_STATE(1548)] = 59882, - [SMALL_STATE(1549)] = 59905, - [SMALL_STATE(1550)] = 59922, - [SMALL_STATE(1551)] = 59945, - [SMALL_STATE(1552)] = 59968, - [SMALL_STATE(1553)] = 59991, - [SMALL_STATE(1554)] = 60014, - [SMALL_STATE(1555)] = 60037, - [SMALL_STATE(1556)] = 60060, - [SMALL_STATE(1557)] = 60077, - [SMALL_STATE(1558)] = 60094, - [SMALL_STATE(1559)] = 60117, - [SMALL_STATE(1560)] = 60140, - [SMALL_STATE(1561)] = 60157, - [SMALL_STATE(1562)] = 60176, - [SMALL_STATE(1563)] = 60195, - [SMALL_STATE(1564)] = 60218, - [SMALL_STATE(1565)] = 60235, - [SMALL_STATE(1566)] = 60258, - [SMALL_STATE(1567)] = 60279, - [SMALL_STATE(1568)] = 60294, - [SMALL_STATE(1569)] = 60315, - [SMALL_STATE(1570)] = 60338, - [SMALL_STATE(1571)] = 60361, - [SMALL_STATE(1572)] = 60384, - [SMALL_STATE(1573)] = 60401, - [SMALL_STATE(1574)] = 60420, - [SMALL_STATE(1575)] = 60443, - [SMALL_STATE(1576)] = 60466, - [SMALL_STATE(1577)] = 60489, - [SMALL_STATE(1578)] = 60512, - [SMALL_STATE(1579)] = 60535, - [SMALL_STATE(1580)] = 60558, - [SMALL_STATE(1581)] = 60581, - [SMALL_STATE(1582)] = 60604, - [SMALL_STATE(1583)] = 60627, - [SMALL_STATE(1584)] = 60642, - [SMALL_STATE(1585)] = 60662, - [SMALL_STATE(1586)] = 60678, - [SMALL_STATE(1587)] = 60694, - [SMALL_STATE(1588)] = 60706, - [SMALL_STATE(1589)] = 60724, - [SMALL_STATE(1590)] = 60740, - [SMALL_STATE(1591)] = 60760, - [SMALL_STATE(1592)] = 60780, - [SMALL_STATE(1593)] = 60798, - [SMALL_STATE(1594)] = 60818, - [SMALL_STATE(1595)] = 60838, - [SMALL_STATE(1596)] = 60854, - [SMALL_STATE(1597)] = 60866, - [SMALL_STATE(1598)] = 60882, - [SMALL_STATE(1599)] = 60896, - [SMALL_STATE(1600)] = 60908, - [SMALL_STATE(1601)] = 60924, - [SMALL_STATE(1602)] = 60944, - [SMALL_STATE(1603)] = 60956, - [SMALL_STATE(1604)] = 60972, - [SMALL_STATE(1605)] = 60992, - [SMALL_STATE(1606)] = 61012, - [SMALL_STATE(1607)] = 61032, - [SMALL_STATE(1608)] = 61052, - [SMALL_STATE(1609)] = 61072, - [SMALL_STATE(1610)] = 61088, - [SMALL_STATE(1611)] = 61108, - [SMALL_STATE(1612)] = 61128, - [SMALL_STATE(1613)] = 61144, - [SMALL_STATE(1614)] = 61164, - [SMALL_STATE(1615)] = 61184, - [SMALL_STATE(1616)] = 61200, - [SMALL_STATE(1617)] = 61216, - [SMALL_STATE(1618)] = 61232, - [SMALL_STATE(1619)] = 61252, - [SMALL_STATE(1620)] = 61268, - [SMALL_STATE(1621)] = 61286, - [SMALL_STATE(1622)] = 61298, - [SMALL_STATE(1623)] = 61314, - [SMALL_STATE(1624)] = 61334, - [SMALL_STATE(1625)] = 61354, - [SMALL_STATE(1626)] = 61366, - [SMALL_STATE(1627)] = 61378, - [SMALL_STATE(1628)] = 61390, - [SMALL_STATE(1629)] = 61408, - [SMALL_STATE(1630)] = 61424, - [SMALL_STATE(1631)] = 61444, - [SMALL_STATE(1632)] = 61460, - [SMALL_STATE(1633)] = 61472, - [SMALL_STATE(1634)] = 61492, - [SMALL_STATE(1635)] = 61508, - [SMALL_STATE(1636)] = 61528, - [SMALL_STATE(1637)] = 61540, - [SMALL_STATE(1638)] = 61552, - [SMALL_STATE(1639)] = 61568, - [SMALL_STATE(1640)] = 61588, - [SMALL_STATE(1641)] = 61604, - [SMALL_STATE(1642)] = 61624, - [SMALL_STATE(1643)] = 61644, - [SMALL_STATE(1644)] = 61664, - [SMALL_STATE(1645)] = 61684, - [SMALL_STATE(1646)] = 61704, - [SMALL_STATE(1647)] = 61720, - [SMALL_STATE(1648)] = 61732, - [SMALL_STATE(1649)] = 61752, - [SMALL_STATE(1650)] = 61770, - [SMALL_STATE(1651)] = 61786, - [SMALL_STATE(1652)] = 61806, - [SMALL_STATE(1653)] = 61824, - [SMALL_STATE(1654)] = 61844, - [SMALL_STATE(1655)] = 61861, - [SMALL_STATE(1656)] = 61878, - [SMALL_STATE(1657)] = 61895, - [SMALL_STATE(1658)] = 61912, - [SMALL_STATE(1659)] = 61929, - [SMALL_STATE(1660)] = 61946, - [SMALL_STATE(1661)] = 61961, - [SMALL_STATE(1662)] = 61976, - [SMALL_STATE(1663)] = 61993, - [SMALL_STATE(1664)] = 62006, - [SMALL_STATE(1665)] = 62023, - [SMALL_STATE(1666)] = 62038, - [SMALL_STATE(1667)] = 62055, - [SMALL_STATE(1668)] = 62068, - [SMALL_STATE(1669)] = 62083, - [SMALL_STATE(1670)] = 62098, - [SMALL_STATE(1671)] = 62115, - [SMALL_STATE(1672)] = 62132, - [SMALL_STATE(1673)] = 62149, - [SMALL_STATE(1674)] = 62166, - [SMALL_STATE(1675)] = 62183, - [SMALL_STATE(1676)] = 62200, - [SMALL_STATE(1677)] = 62215, - [SMALL_STATE(1678)] = 62232, - [SMALL_STATE(1679)] = 62247, - [SMALL_STATE(1680)] = 62262, - [SMALL_STATE(1681)] = 62279, - [SMALL_STATE(1682)] = 62296, - [SMALL_STATE(1683)] = 62309, - [SMALL_STATE(1684)] = 62326, - [SMALL_STATE(1685)] = 62343, - [SMALL_STATE(1686)] = 62358, - [SMALL_STATE(1687)] = 62371, - [SMALL_STATE(1688)] = 62388, - [SMALL_STATE(1689)] = 62405, - [SMALL_STATE(1690)] = 62420, - [SMALL_STATE(1691)] = 62437, - [SMALL_STATE(1692)] = 62454, - [SMALL_STATE(1693)] = 62471, - [SMALL_STATE(1694)] = 62488, - [SMALL_STATE(1695)] = 62503, - [SMALL_STATE(1696)] = 62520, - [SMALL_STATE(1697)] = 62537, - [SMALL_STATE(1698)] = 62552, - [SMALL_STATE(1699)] = 62569, - [SMALL_STATE(1700)] = 62586, - [SMALL_STATE(1701)] = 62603, - [SMALL_STATE(1702)] = 62618, - [SMALL_STATE(1703)] = 62631, - [SMALL_STATE(1704)] = 62646, - [SMALL_STATE(1705)] = 62661, - [SMALL_STATE(1706)] = 62678, - [SMALL_STATE(1707)] = 62695, - [SMALL_STATE(1708)] = 62708, - [SMALL_STATE(1709)] = 62721, - [SMALL_STATE(1710)] = 62738, - [SMALL_STATE(1711)] = 62755, - [SMALL_STATE(1712)] = 62772, - [SMALL_STATE(1713)] = 62789, - [SMALL_STATE(1714)] = 62806, - [SMALL_STATE(1715)] = 62823, - [SMALL_STATE(1716)] = 62840, - [SMALL_STATE(1717)] = 62857, - [SMALL_STATE(1718)] = 62874, - [SMALL_STATE(1719)] = 62891, - [SMALL_STATE(1720)] = 62908, - [SMALL_STATE(1721)] = 62925, - [SMALL_STATE(1722)] = 62942, - [SMALL_STATE(1723)] = 62959, - [SMALL_STATE(1724)] = 62972, - [SMALL_STATE(1725)] = 62985, - [SMALL_STATE(1726)] = 63002, - [SMALL_STATE(1727)] = 63017, - [SMALL_STATE(1728)] = 63032, - [SMALL_STATE(1729)] = 63049, - [SMALL_STATE(1730)] = 63066, - [SMALL_STATE(1731)] = 63083, - [SMALL_STATE(1732)] = 63098, - [SMALL_STATE(1733)] = 63115, - [SMALL_STATE(1734)] = 63132, - [SMALL_STATE(1735)] = 63147, - [SMALL_STATE(1736)] = 63160, - [SMALL_STATE(1737)] = 63175, - [SMALL_STATE(1738)] = 63192, - [SMALL_STATE(1739)] = 63209, - [SMALL_STATE(1740)] = 63226, - [SMALL_STATE(1741)] = 63243, - [SMALL_STATE(1742)] = 63260, - [SMALL_STATE(1743)] = 63277, - [SMALL_STATE(1744)] = 63287, - [SMALL_STATE(1745)] = 63299, - [SMALL_STATE(1746)] = 63313, - [SMALL_STATE(1747)] = 63327, - [SMALL_STATE(1748)] = 63337, - [SMALL_STATE(1749)] = 63351, - [SMALL_STATE(1750)] = 63365, - [SMALL_STATE(1751)] = 63379, - [SMALL_STATE(1752)] = 63393, - [SMALL_STATE(1753)] = 63407, - [SMALL_STATE(1754)] = 63421, - [SMALL_STATE(1755)] = 63435, - [SMALL_STATE(1756)] = 63447, - [SMALL_STATE(1757)] = 63459, - [SMALL_STATE(1758)] = 63473, - [SMALL_STATE(1759)] = 63487, - [SMALL_STATE(1760)] = 63501, - [SMALL_STATE(1761)] = 63515, - [SMALL_STATE(1762)] = 63529, - [SMALL_STATE(1763)] = 63543, - [SMALL_STATE(1764)] = 63557, - [SMALL_STATE(1765)] = 63569, - [SMALL_STATE(1766)] = 63583, - [SMALL_STATE(1767)] = 63597, - [SMALL_STATE(1768)] = 63611, - [SMALL_STATE(1769)] = 63625, - [SMALL_STATE(1770)] = 63635, - [SMALL_STATE(1771)] = 63647, - [SMALL_STATE(1772)] = 63659, - [SMALL_STATE(1773)] = 63671, - [SMALL_STATE(1774)] = 63683, - [SMALL_STATE(1775)] = 63697, - [SMALL_STATE(1776)] = 63709, - [SMALL_STATE(1777)] = 63723, - [SMALL_STATE(1778)] = 63737, - [SMALL_STATE(1779)] = 63749, - [SMALL_STATE(1780)] = 63763, - [SMALL_STATE(1781)] = 63775, - [SMALL_STATE(1782)] = 63789, - [SMALL_STATE(1783)] = 63803, - [SMALL_STATE(1784)] = 63813, - [SMALL_STATE(1785)] = 63823, - [SMALL_STATE(1786)] = 63837, - [SMALL_STATE(1787)] = 63851, - [SMALL_STATE(1788)] = 63865, - [SMALL_STATE(1789)] = 63879, - [SMALL_STATE(1790)] = 63891, - [SMALL_STATE(1791)] = 63905, - [SMALL_STATE(1792)] = 63919, - [SMALL_STATE(1793)] = 63933, - [SMALL_STATE(1794)] = 63947, - [SMALL_STATE(1795)] = 63961, - [SMALL_STATE(1796)] = 63975, - [SMALL_STATE(1797)] = 63985, - [SMALL_STATE(1798)] = 63999, - [SMALL_STATE(1799)] = 64009, - [SMALL_STATE(1800)] = 64023, - [SMALL_STATE(1801)] = 64037, - [SMALL_STATE(1802)] = 64051, - [SMALL_STATE(1803)] = 64061, - [SMALL_STATE(1804)] = 64075, - [SMALL_STATE(1805)] = 64089, - [SMALL_STATE(1806)] = 64103, - [SMALL_STATE(1807)] = 64113, - [SMALL_STATE(1808)] = 64127, - [SMALL_STATE(1809)] = 64139, - [SMALL_STATE(1810)] = 64151, - [SMALL_STATE(1811)] = 64165, - [SMALL_STATE(1812)] = 64177, - [SMALL_STATE(1813)] = 64191, - [SMALL_STATE(1814)] = 64205, - [SMALL_STATE(1815)] = 64219, - [SMALL_STATE(1816)] = 64233, - [SMALL_STATE(1817)] = 64247, - [SMALL_STATE(1818)] = 64261, - [SMALL_STATE(1819)] = 64273, - [SMALL_STATE(1820)] = 64287, - [SMALL_STATE(1821)] = 64301, - [SMALL_STATE(1822)] = 64315, - [SMALL_STATE(1823)] = 64325, - [SMALL_STATE(1824)] = 64339, - [SMALL_STATE(1825)] = 64353, - [SMALL_STATE(1826)] = 64365, - [SMALL_STATE(1827)] = 64377, - [SMALL_STATE(1828)] = 64391, - [SMALL_STATE(1829)] = 64403, - [SMALL_STATE(1830)] = 64417, - [SMALL_STATE(1831)] = 64429, - [SMALL_STATE(1832)] = 64443, - [SMALL_STATE(1833)] = 64457, - [SMALL_STATE(1834)] = 64471, - [SMALL_STATE(1835)] = 64485, - [SMALL_STATE(1836)] = 64497, - [SMALL_STATE(1837)] = 64511, - [SMALL_STATE(1838)] = 64525, - [SMALL_STATE(1839)] = 64537, - [SMALL_STATE(1840)] = 64551, - [SMALL_STATE(1841)] = 64565, - [SMALL_STATE(1842)] = 64579, - [SMALL_STATE(1843)] = 64593, - [SMALL_STATE(1844)] = 64607, - [SMALL_STATE(1845)] = 64621, - [SMALL_STATE(1846)] = 64635, - [SMALL_STATE(1847)] = 64649, - [SMALL_STATE(1848)] = 64659, - [SMALL_STATE(1849)] = 64671, - [SMALL_STATE(1850)] = 64685, - [SMALL_STATE(1851)] = 64699, - [SMALL_STATE(1852)] = 64713, - [SMALL_STATE(1853)] = 64727, - [SMALL_STATE(1854)] = 64741, - [SMALL_STATE(1855)] = 64751, - [SMALL_STATE(1856)] = 64763, - [SMALL_STATE(1857)] = 64773, - [SMALL_STATE(1858)] = 64783, - [SMALL_STATE(1859)] = 64797, - [SMALL_STATE(1860)] = 64807, - [SMALL_STATE(1861)] = 64821, - [SMALL_STATE(1862)] = 64835, - [SMALL_STATE(1863)] = 64849, - [SMALL_STATE(1864)] = 64861, - [SMALL_STATE(1865)] = 64875, - [SMALL_STATE(1866)] = 64885, - [SMALL_STATE(1867)] = 64899, - [SMALL_STATE(1868)] = 64913, - [SMALL_STATE(1869)] = 64927, - [SMALL_STATE(1870)] = 64941, - [SMALL_STATE(1871)] = 64951, - [SMALL_STATE(1872)] = 64965, - [SMALL_STATE(1873)] = 64979, - [SMALL_STATE(1874)] = 64993, - [SMALL_STATE(1875)] = 65003, - [SMALL_STATE(1876)] = 65013, - [SMALL_STATE(1877)] = 65027, - [SMALL_STATE(1878)] = 65041, - [SMALL_STATE(1879)] = 65055, - [SMALL_STATE(1880)] = 65065, - [SMALL_STATE(1881)] = 65075, - [SMALL_STATE(1882)] = 65085, - [SMALL_STATE(1883)] = 65095, - [SMALL_STATE(1884)] = 65109, - [SMALL_STATE(1885)] = 65119, - [SMALL_STATE(1886)] = 65133, - [SMALL_STATE(1887)] = 65143, - [SMALL_STATE(1888)] = 65157, - [SMALL_STATE(1889)] = 65171, - [SMALL_STATE(1890)] = 65185, - [SMALL_STATE(1891)] = 65199, - [SMALL_STATE(1892)] = 65213, - [SMALL_STATE(1893)] = 65227, - [SMALL_STATE(1894)] = 65241, - [SMALL_STATE(1895)] = 65255, - [SMALL_STATE(1896)] = 65265, - [SMALL_STATE(1897)] = 65279, - [SMALL_STATE(1898)] = 65293, - [SMALL_STATE(1899)] = 65307, - [SMALL_STATE(1900)] = 65321, - [SMALL_STATE(1901)] = 65335, - [SMALL_STATE(1902)] = 65349, - [SMALL_STATE(1903)] = 65363, - [SMALL_STATE(1904)] = 65377, - [SMALL_STATE(1905)] = 65389, - [SMALL_STATE(1906)] = 65403, - [SMALL_STATE(1907)] = 65417, - [SMALL_STATE(1908)] = 65431, - [SMALL_STATE(1909)] = 65445, - [SMALL_STATE(1910)] = 65459, - [SMALL_STATE(1911)] = 65473, - [SMALL_STATE(1912)] = 65485, - [SMALL_STATE(1913)] = 65495, - [SMALL_STATE(1914)] = 65505, - [SMALL_STATE(1915)] = 65519, - [SMALL_STATE(1916)] = 65533, - [SMALL_STATE(1917)] = 65547, - [SMALL_STATE(1918)] = 65561, - [SMALL_STATE(1919)] = 65575, - [SMALL_STATE(1920)] = 65589, - [SMALL_STATE(1921)] = 65599, - [SMALL_STATE(1922)] = 65613, - [SMALL_STATE(1923)] = 65627, - [SMALL_STATE(1924)] = 65641, - [SMALL_STATE(1925)] = 65651, - [SMALL_STATE(1926)] = 65665, - [SMALL_STATE(1927)] = 65679, - [SMALL_STATE(1928)] = 65693, - [SMALL_STATE(1929)] = 65707, - [SMALL_STATE(1930)] = 65717, - [SMALL_STATE(1931)] = 65731, - [SMALL_STATE(1932)] = 65745, - [SMALL_STATE(1933)] = 65759, - [SMALL_STATE(1934)] = 65773, - [SMALL_STATE(1935)] = 65783, - [SMALL_STATE(1936)] = 65797, - [SMALL_STATE(1937)] = 65811, - [SMALL_STATE(1938)] = 65825, - [SMALL_STATE(1939)] = 65839, - [SMALL_STATE(1940)] = 65853, - [SMALL_STATE(1941)] = 65867, - [SMALL_STATE(1942)] = 65881, - [SMALL_STATE(1943)] = 65895, - [SMALL_STATE(1944)] = 65909, - [SMALL_STATE(1945)] = 65923, - [SMALL_STATE(1946)] = 65937, - [SMALL_STATE(1947)] = 65951, - [SMALL_STATE(1948)] = 65965, - [SMALL_STATE(1949)] = 65977, - [SMALL_STATE(1950)] = 65991, - [SMALL_STATE(1951)] = 66003, - [SMALL_STATE(1952)] = 66017, - [SMALL_STATE(1953)] = 66031, - [SMALL_STATE(1954)] = 66045, - [SMALL_STATE(1955)] = 66059, - [SMALL_STATE(1956)] = 66069, - [SMALL_STATE(1957)] = 66079, - [SMALL_STATE(1958)] = 66089, - [SMALL_STATE(1959)] = 66103, - [SMALL_STATE(1960)] = 66117, - [SMALL_STATE(1961)] = 66131, - [SMALL_STATE(1962)] = 66141, - [SMALL_STATE(1963)] = 66155, - [SMALL_STATE(1964)] = 66169, - [SMALL_STATE(1965)] = 66183, - [SMALL_STATE(1966)] = 66195, - [SMALL_STATE(1967)] = 66209, - [SMALL_STATE(1968)] = 66223, - [SMALL_STATE(1969)] = 66237, - [SMALL_STATE(1970)] = 66249, - [SMALL_STATE(1971)] = 66263, - [SMALL_STATE(1972)] = 66277, - [SMALL_STATE(1973)] = 66291, - [SMALL_STATE(1974)] = 66303, - [SMALL_STATE(1975)] = 66317, - [SMALL_STATE(1976)] = 66331, - [SMALL_STATE(1977)] = 66345, - [SMALL_STATE(1978)] = 66359, - [SMALL_STATE(1979)] = 66373, - [SMALL_STATE(1980)] = 66387, - [SMALL_STATE(1981)] = 66401, - [SMALL_STATE(1982)] = 66415, - [SMALL_STATE(1983)] = 66429, - [SMALL_STATE(1984)] = 66443, - [SMALL_STATE(1985)] = 66457, - [SMALL_STATE(1986)] = 66468, - [SMALL_STATE(1987)] = 66479, - [SMALL_STATE(1988)] = 66488, - [SMALL_STATE(1989)] = 66497, - [SMALL_STATE(1990)] = 66508, - [SMALL_STATE(1991)] = 66519, - [SMALL_STATE(1992)] = 66530, - [SMALL_STATE(1993)] = 66541, - [SMALL_STATE(1994)] = 66552, - [SMALL_STATE(1995)] = 66563, - [SMALL_STATE(1996)] = 66574, - [SMALL_STATE(1997)] = 66585, - [SMALL_STATE(1998)] = 66596, - [SMALL_STATE(1999)] = 66607, - [SMALL_STATE(2000)] = 66618, - [SMALL_STATE(2001)] = 66629, - [SMALL_STATE(2002)] = 66640, - [SMALL_STATE(2003)] = 66649, - [SMALL_STATE(2004)] = 66660, - [SMALL_STATE(2005)] = 66671, - [SMALL_STATE(2006)] = 66682, - [SMALL_STATE(2007)] = 66693, - [SMALL_STATE(2008)] = 66704, - [SMALL_STATE(2009)] = 66715, - [SMALL_STATE(2010)] = 66726, - [SMALL_STATE(2011)] = 66737, - [SMALL_STATE(2012)] = 66746, - [SMALL_STATE(2013)] = 66757, - [SMALL_STATE(2014)] = 66766, - [SMALL_STATE(2015)] = 66777, - [SMALL_STATE(2016)] = 66788, - [SMALL_STATE(2017)] = 66799, - [SMALL_STATE(2018)] = 66810, - [SMALL_STATE(2019)] = 66821, - [SMALL_STATE(2020)] = 66832, - [SMALL_STATE(2021)] = 66843, - [SMALL_STATE(2022)] = 66854, - [SMALL_STATE(2023)] = 66865, - [SMALL_STATE(2024)] = 66876, - [SMALL_STATE(2025)] = 66887, - [SMALL_STATE(2026)] = 66898, - [SMALL_STATE(2027)] = 66909, - [SMALL_STATE(2028)] = 66920, - [SMALL_STATE(2029)] = 66931, - [SMALL_STATE(2030)] = 66940, - [SMALL_STATE(2031)] = 66951, - [SMALL_STATE(2032)] = 66962, - [SMALL_STATE(2033)] = 66973, - [SMALL_STATE(2034)] = 66984, - [SMALL_STATE(2035)] = 66995, - [SMALL_STATE(2036)] = 67006, - [SMALL_STATE(2037)] = 67017, - [SMALL_STATE(2038)] = 67028, - [SMALL_STATE(2039)] = 67039, - [SMALL_STATE(2040)] = 67050, - [SMALL_STATE(2041)] = 67061, - [SMALL_STATE(2042)] = 67072, - [SMALL_STATE(2043)] = 67083, - [SMALL_STATE(2044)] = 67094, - [SMALL_STATE(2045)] = 67105, - [SMALL_STATE(2046)] = 67116, - [SMALL_STATE(2047)] = 67127, - [SMALL_STATE(2048)] = 67138, - [SMALL_STATE(2049)] = 67149, - [SMALL_STATE(2050)] = 67160, - [SMALL_STATE(2051)] = 67171, - [SMALL_STATE(2052)] = 67182, - [SMALL_STATE(2053)] = 67191, - [SMALL_STATE(2054)] = 67202, - [SMALL_STATE(2055)] = 67213, - [SMALL_STATE(2056)] = 67224, - [SMALL_STATE(2057)] = 67235, - [SMALL_STATE(2058)] = 67246, - [SMALL_STATE(2059)] = 67257, - [SMALL_STATE(2060)] = 67268, - [SMALL_STATE(2061)] = 67279, - [SMALL_STATE(2062)] = 67290, - [SMALL_STATE(2063)] = 67301, - [SMALL_STATE(2064)] = 67312, - [SMALL_STATE(2065)] = 67323, - [SMALL_STATE(2066)] = 67334, - [SMALL_STATE(2067)] = 67345, - [SMALL_STATE(2068)] = 67356, - [SMALL_STATE(2069)] = 67365, - [SMALL_STATE(2070)] = 67376, - [SMALL_STATE(2071)] = 67385, - [SMALL_STATE(2072)] = 67394, - [SMALL_STATE(2073)] = 67405, - [SMALL_STATE(2074)] = 67416, - [SMALL_STATE(2075)] = 67427, - [SMALL_STATE(2076)] = 67436, - [SMALL_STATE(2077)] = 67447, - [SMALL_STATE(2078)] = 67456, - [SMALL_STATE(2079)] = 67467, - [SMALL_STATE(2080)] = 67478, - [SMALL_STATE(2081)] = 67489, - [SMALL_STATE(2082)] = 67500, - [SMALL_STATE(2083)] = 67511, - [SMALL_STATE(2084)] = 67522, - [SMALL_STATE(2085)] = 67533, - [SMALL_STATE(2086)] = 67544, - [SMALL_STATE(2087)] = 67555, - [SMALL_STATE(2088)] = 67566, - [SMALL_STATE(2089)] = 67577, - [SMALL_STATE(2090)] = 67588, - [SMALL_STATE(2091)] = 67599, - [SMALL_STATE(2092)] = 67610, - [SMALL_STATE(2093)] = 67621, - [SMALL_STATE(2094)] = 67632, - [SMALL_STATE(2095)] = 67643, - [SMALL_STATE(2096)] = 67652, - [SMALL_STATE(2097)] = 67663, - [SMALL_STATE(2098)] = 67674, - [SMALL_STATE(2099)] = 67685, - [SMALL_STATE(2100)] = 67696, - [SMALL_STATE(2101)] = 67707, - [SMALL_STATE(2102)] = 67718, - [SMALL_STATE(2103)] = 67729, - [SMALL_STATE(2104)] = 67740, - [SMALL_STATE(2105)] = 67751, - [SMALL_STATE(2106)] = 67762, - [SMALL_STATE(2107)] = 67773, - [SMALL_STATE(2108)] = 67784, - [SMALL_STATE(2109)] = 67795, - [SMALL_STATE(2110)] = 67804, - [SMALL_STATE(2111)] = 67815, - [SMALL_STATE(2112)] = 67826, - [SMALL_STATE(2113)] = 67837, - [SMALL_STATE(2114)] = 67848, - [SMALL_STATE(2115)] = 67859, - [SMALL_STATE(2116)] = 67870, - [SMALL_STATE(2117)] = 67881, - [SMALL_STATE(2118)] = 67890, - [SMALL_STATE(2119)] = 67901, - [SMALL_STATE(2120)] = 67910, - [SMALL_STATE(2121)] = 67921, - [SMALL_STATE(2122)] = 67932, - [SMALL_STATE(2123)] = 67943, - [SMALL_STATE(2124)] = 67954, - [SMALL_STATE(2125)] = 67965, - [SMALL_STATE(2126)] = 67976, - [SMALL_STATE(2127)] = 67987, - [SMALL_STATE(2128)] = 67998, - [SMALL_STATE(2129)] = 68009, - [SMALL_STATE(2130)] = 68020, - [SMALL_STATE(2131)] = 68031, - [SMALL_STATE(2132)] = 68042, - [SMALL_STATE(2133)] = 68051, - [SMALL_STATE(2134)] = 68062, - [SMALL_STATE(2135)] = 68073, - [SMALL_STATE(2136)] = 68084, - [SMALL_STATE(2137)] = 68095, - [SMALL_STATE(2138)] = 68106, - [SMALL_STATE(2139)] = 68115, - [SMALL_STATE(2140)] = 68126, - [SMALL_STATE(2141)] = 68137, - [SMALL_STATE(2142)] = 68148, - [SMALL_STATE(2143)] = 68157, - [SMALL_STATE(2144)] = 68168, - [SMALL_STATE(2145)] = 68179, - [SMALL_STATE(2146)] = 68190, - [SMALL_STATE(2147)] = 68201, - [SMALL_STATE(2148)] = 68212, - [SMALL_STATE(2149)] = 68223, - [SMALL_STATE(2150)] = 68232, - [SMALL_STATE(2151)] = 68243, - [SMALL_STATE(2152)] = 68254, - [SMALL_STATE(2153)] = 68265, - [SMALL_STATE(2154)] = 68276, - [SMALL_STATE(2155)] = 68287, - [SMALL_STATE(2156)] = 68298, - [SMALL_STATE(2157)] = 68309, - [SMALL_STATE(2158)] = 68320, - [SMALL_STATE(2159)] = 68331, - [SMALL_STATE(2160)] = 68340, - [SMALL_STATE(2161)] = 68351, - [SMALL_STATE(2162)] = 68362, - [SMALL_STATE(2163)] = 68373, - [SMALL_STATE(2164)] = 68382, - [SMALL_STATE(2165)] = 68393, - [SMALL_STATE(2166)] = 68404, - [SMALL_STATE(2167)] = 68413, - [SMALL_STATE(2168)] = 68422, - [SMALL_STATE(2169)] = 68433, - [SMALL_STATE(2170)] = 68444, - [SMALL_STATE(2171)] = 68455, - [SMALL_STATE(2172)] = 68466, - [SMALL_STATE(2173)] = 68475, - [SMALL_STATE(2174)] = 68486, - [SMALL_STATE(2175)] = 68497, - [SMALL_STATE(2176)] = 68506, - [SMALL_STATE(2177)] = 68517, - [SMALL_STATE(2178)] = 68526, - [SMALL_STATE(2179)] = 68537, - [SMALL_STATE(2180)] = 68546, - [SMALL_STATE(2181)] = 68557, - [SMALL_STATE(2182)] = 68568, - [SMALL_STATE(2183)] = 68579, - [SMALL_STATE(2184)] = 68587, - [SMALL_STATE(2185)] = 68595, - [SMALL_STATE(2186)] = 68603, - [SMALL_STATE(2187)] = 68611, - [SMALL_STATE(2188)] = 68619, - [SMALL_STATE(2189)] = 68627, - [SMALL_STATE(2190)] = 68635, - [SMALL_STATE(2191)] = 68643, - [SMALL_STATE(2192)] = 68651, - [SMALL_STATE(2193)] = 68659, - [SMALL_STATE(2194)] = 68667, - [SMALL_STATE(2195)] = 68675, - [SMALL_STATE(2196)] = 68683, - [SMALL_STATE(2197)] = 68691, - [SMALL_STATE(2198)] = 68699, - [SMALL_STATE(2199)] = 68707, - [SMALL_STATE(2200)] = 68715, - [SMALL_STATE(2201)] = 68723, - [SMALL_STATE(2202)] = 68731, - [SMALL_STATE(2203)] = 68739, - [SMALL_STATE(2204)] = 68747, - [SMALL_STATE(2205)] = 68755, - [SMALL_STATE(2206)] = 68763, - [SMALL_STATE(2207)] = 68771, - [SMALL_STATE(2208)] = 68779, - [SMALL_STATE(2209)] = 68787, - [SMALL_STATE(2210)] = 68795, - [SMALL_STATE(2211)] = 68803, - [SMALL_STATE(2212)] = 68811, - [SMALL_STATE(2213)] = 68819, - [SMALL_STATE(2214)] = 68827, - [SMALL_STATE(2215)] = 68835, - [SMALL_STATE(2216)] = 68843, - [SMALL_STATE(2217)] = 68851, - [SMALL_STATE(2218)] = 68859, - [SMALL_STATE(2219)] = 68867, - [SMALL_STATE(2220)] = 68875, - [SMALL_STATE(2221)] = 68883, - [SMALL_STATE(2222)] = 68891, - [SMALL_STATE(2223)] = 68899, - [SMALL_STATE(2224)] = 68907, - [SMALL_STATE(2225)] = 68915, - [SMALL_STATE(2226)] = 68923, - [SMALL_STATE(2227)] = 68931, - [SMALL_STATE(2228)] = 68939, - [SMALL_STATE(2229)] = 68947, - [SMALL_STATE(2230)] = 68955, - [SMALL_STATE(2231)] = 68963, - [SMALL_STATE(2232)] = 68971, - [SMALL_STATE(2233)] = 68979, - [SMALL_STATE(2234)] = 68987, - [SMALL_STATE(2235)] = 68995, - [SMALL_STATE(2236)] = 69003, - [SMALL_STATE(2237)] = 69011, - [SMALL_STATE(2238)] = 69019, - [SMALL_STATE(2239)] = 69027, - [SMALL_STATE(2240)] = 69035, - [SMALL_STATE(2241)] = 69043, - [SMALL_STATE(2242)] = 69051, - [SMALL_STATE(2243)] = 69059, - [SMALL_STATE(2244)] = 69067, - [SMALL_STATE(2245)] = 69075, - [SMALL_STATE(2246)] = 69083, - [SMALL_STATE(2247)] = 69091, - [SMALL_STATE(2248)] = 69099, - [SMALL_STATE(2249)] = 69107, - [SMALL_STATE(2250)] = 69115, - [SMALL_STATE(2251)] = 69123, - [SMALL_STATE(2252)] = 69131, - [SMALL_STATE(2253)] = 69139, - [SMALL_STATE(2254)] = 69147, - [SMALL_STATE(2255)] = 69155, - [SMALL_STATE(2256)] = 69163, - [SMALL_STATE(2257)] = 69171, - [SMALL_STATE(2258)] = 69179, - [SMALL_STATE(2259)] = 69187, - [SMALL_STATE(2260)] = 69195, - [SMALL_STATE(2261)] = 69203, - [SMALL_STATE(2262)] = 69211, - [SMALL_STATE(2263)] = 69219, - [SMALL_STATE(2264)] = 69227, - [SMALL_STATE(2265)] = 69235, - [SMALL_STATE(2266)] = 69243, - [SMALL_STATE(2267)] = 69251, - [SMALL_STATE(2268)] = 69259, - [SMALL_STATE(2269)] = 69267, - [SMALL_STATE(2270)] = 69275, - [SMALL_STATE(2271)] = 69283, - [SMALL_STATE(2272)] = 69291, - [SMALL_STATE(2273)] = 69299, - [SMALL_STATE(2274)] = 69307, - [SMALL_STATE(2275)] = 69315, - [SMALL_STATE(2276)] = 69323, - [SMALL_STATE(2277)] = 69331, - [SMALL_STATE(2278)] = 69339, - [SMALL_STATE(2279)] = 69347, - [SMALL_STATE(2280)] = 69355, - [SMALL_STATE(2281)] = 69363, - [SMALL_STATE(2282)] = 69371, - [SMALL_STATE(2283)] = 69379, - [SMALL_STATE(2284)] = 69387, - [SMALL_STATE(2285)] = 69395, - [SMALL_STATE(2286)] = 69403, - [SMALL_STATE(2287)] = 69411, - [SMALL_STATE(2288)] = 69419, - [SMALL_STATE(2289)] = 69427, - [SMALL_STATE(2290)] = 69435, - [SMALL_STATE(2291)] = 69443, - [SMALL_STATE(2292)] = 69451, - [SMALL_STATE(2293)] = 69459, - [SMALL_STATE(2294)] = 69467, - [SMALL_STATE(2295)] = 69475, - [SMALL_STATE(2296)] = 69483, - [SMALL_STATE(2297)] = 69491, - [SMALL_STATE(2298)] = 69499, - [SMALL_STATE(2299)] = 69507, - [SMALL_STATE(2300)] = 69515, - [SMALL_STATE(2301)] = 69523, - [SMALL_STATE(2302)] = 69531, - [SMALL_STATE(2303)] = 69539, - [SMALL_STATE(2304)] = 69547, - [SMALL_STATE(2305)] = 69555, - [SMALL_STATE(2306)] = 69563, - [SMALL_STATE(2307)] = 69571, - [SMALL_STATE(2308)] = 69579, - [SMALL_STATE(2309)] = 69587, - [SMALL_STATE(2310)] = 69595, - [SMALL_STATE(2311)] = 69603, - [SMALL_STATE(2312)] = 69611, - [SMALL_STATE(2313)] = 69619, - [SMALL_STATE(2314)] = 69627, - [SMALL_STATE(2315)] = 69635, - [SMALL_STATE(2316)] = 69643, - [SMALL_STATE(2317)] = 69651, - [SMALL_STATE(2318)] = 69659, - [SMALL_STATE(2319)] = 69667, - [SMALL_STATE(2320)] = 69675, - [SMALL_STATE(2321)] = 69683, - [SMALL_STATE(2322)] = 69691, - [SMALL_STATE(2323)] = 69699, - [SMALL_STATE(2324)] = 69707, - [SMALL_STATE(2325)] = 69715, - [SMALL_STATE(2326)] = 69723, - [SMALL_STATE(2327)] = 69731, - [SMALL_STATE(2328)] = 69739, - [SMALL_STATE(2329)] = 69747, - [SMALL_STATE(2330)] = 69755, - [SMALL_STATE(2331)] = 69763, - [SMALL_STATE(2332)] = 69771, - [SMALL_STATE(2333)] = 69779, - [SMALL_STATE(2334)] = 69787, - [SMALL_STATE(2335)] = 69795, - [SMALL_STATE(2336)] = 69803, - [SMALL_STATE(2337)] = 69811, - [SMALL_STATE(2338)] = 69819, - [SMALL_STATE(2339)] = 69827, - [SMALL_STATE(2340)] = 69835, - [SMALL_STATE(2341)] = 69843, - [SMALL_STATE(2342)] = 69851, - [SMALL_STATE(2343)] = 69859, - [SMALL_STATE(2344)] = 69867, - [SMALL_STATE(2345)] = 69875, - [SMALL_STATE(2346)] = 69883, - [SMALL_STATE(2347)] = 69891, - [SMALL_STATE(2348)] = 69899, - [SMALL_STATE(2349)] = 69907, - [SMALL_STATE(2350)] = 69915, - [SMALL_STATE(2351)] = 69923, - [SMALL_STATE(2352)] = 69931, - [SMALL_STATE(2353)] = 69939, - [SMALL_STATE(2354)] = 69947, - [SMALL_STATE(2355)] = 69955, - [SMALL_STATE(2356)] = 69963, - [SMALL_STATE(2357)] = 69971, - [SMALL_STATE(2358)] = 69979, - [SMALL_STATE(2359)] = 69987, - [SMALL_STATE(2360)] = 69995, - [SMALL_STATE(2361)] = 70003, - [SMALL_STATE(2362)] = 70011, - [SMALL_STATE(2363)] = 70019, - [SMALL_STATE(2364)] = 70027, - [SMALL_STATE(2365)] = 70035, - [SMALL_STATE(2366)] = 70043, - [SMALL_STATE(2367)] = 70051, - [SMALL_STATE(2368)] = 70059, - [SMALL_STATE(2369)] = 70067, - [SMALL_STATE(2370)] = 70075, - [SMALL_STATE(2371)] = 70083, - [SMALL_STATE(2372)] = 70091, - [SMALL_STATE(2373)] = 70099, - [SMALL_STATE(2374)] = 70107, - [SMALL_STATE(2375)] = 70115, - [SMALL_STATE(2376)] = 70123, - [SMALL_STATE(2377)] = 70131, - [SMALL_STATE(2378)] = 70139, - [SMALL_STATE(2379)] = 70147, - [SMALL_STATE(2380)] = 70155, - [SMALL_STATE(2381)] = 70163, - [SMALL_STATE(2382)] = 70171, - [SMALL_STATE(2383)] = 70179, - [SMALL_STATE(2384)] = 70187, - [SMALL_STATE(2385)] = 70195, - [SMALL_STATE(2386)] = 70203, - [SMALL_STATE(2387)] = 70211, - [SMALL_STATE(2388)] = 70219, - [SMALL_STATE(2389)] = 70227, - [SMALL_STATE(2390)] = 70235, - [SMALL_STATE(2391)] = 70243, - [SMALL_STATE(2392)] = 70251, - [SMALL_STATE(2393)] = 70259, - [SMALL_STATE(2394)] = 70267, - [SMALL_STATE(2395)] = 70275, - [SMALL_STATE(2396)] = 70283, - [SMALL_STATE(2397)] = 70291, - [SMALL_STATE(2398)] = 70299, - [SMALL_STATE(2399)] = 70307, - [SMALL_STATE(2400)] = 70315, - [SMALL_STATE(2401)] = 70323, - [SMALL_STATE(2402)] = 70331, - [SMALL_STATE(2403)] = 70339, - [SMALL_STATE(2404)] = 70347, - [SMALL_STATE(2405)] = 70355, - [SMALL_STATE(2406)] = 70363, - [SMALL_STATE(2407)] = 70371, - [SMALL_STATE(2408)] = 70379, - [SMALL_STATE(2409)] = 70387, - [SMALL_STATE(2410)] = 70395, - [SMALL_STATE(2411)] = 70403, - [SMALL_STATE(2412)] = 70411, - [SMALL_STATE(2413)] = 70419, - [SMALL_STATE(2414)] = 70427, + [SMALL_STATE(732)] = 20787, + [SMALL_STATE(733)] = 20841, + [SMALL_STATE(734)] = 20897, + [SMALL_STATE(735)] = 20951, + [SMALL_STATE(736)] = 21005, + [SMALL_STATE(737)] = 21059, + [SMALL_STATE(738)] = 21113, + [SMALL_STATE(739)] = 21167, + [SMALL_STATE(740)] = 21221, + [SMALL_STATE(741)] = 21275, + [SMALL_STATE(742)] = 21329, + [SMALL_STATE(743)] = 21383, + [SMALL_STATE(744)] = 21437, + [SMALL_STATE(745)] = 21491, + [SMALL_STATE(746)] = 21545, + [SMALL_STATE(747)] = 21599, + [SMALL_STATE(748)] = 21653, + [SMALL_STATE(749)] = 21707, + [SMALL_STATE(750)] = 21761, + [SMALL_STATE(751)] = 21815, + [SMALL_STATE(752)] = 21869, + [SMALL_STATE(753)] = 21923, + [SMALL_STATE(754)] = 21977, + [SMALL_STATE(755)] = 22031, + [SMALL_STATE(756)] = 22085, + [SMALL_STATE(757)] = 22139, + [SMALL_STATE(758)] = 22193, + [SMALL_STATE(759)] = 22247, + [SMALL_STATE(760)] = 22301, + [SMALL_STATE(761)] = 22355, + [SMALL_STATE(762)] = 22409, + [SMALL_STATE(763)] = 22463, + [SMALL_STATE(764)] = 22517, + [SMALL_STATE(765)] = 22573, + [SMALL_STATE(766)] = 22627, + [SMALL_STATE(767)] = 22681, + [SMALL_STATE(768)] = 22735, + [SMALL_STATE(769)] = 22789, + [SMALL_STATE(770)] = 22843, + [SMALL_STATE(771)] = 22897, + [SMALL_STATE(772)] = 22951, + [SMALL_STATE(773)] = 23005, + [SMALL_STATE(774)] = 23059, + [SMALL_STATE(775)] = 23115, + [SMALL_STATE(776)] = 23169, + [SMALL_STATE(777)] = 23223, + [SMALL_STATE(778)] = 23277, + [SMALL_STATE(779)] = 23331, + [SMALL_STATE(780)] = 23385, + [SMALL_STATE(781)] = 23439, + [SMALL_STATE(782)] = 23493, + [SMALL_STATE(783)] = 23547, + [SMALL_STATE(784)] = 23601, + [SMALL_STATE(785)] = 23655, + [SMALL_STATE(786)] = 23709, + [SMALL_STATE(787)] = 23763, + [SMALL_STATE(788)] = 23817, + [SMALL_STATE(789)] = 23871, + [SMALL_STATE(790)] = 23925, + [SMALL_STATE(791)] = 23979, + [SMALL_STATE(792)] = 24033, + [SMALL_STATE(793)] = 24087, + [SMALL_STATE(794)] = 24141, + [SMALL_STATE(795)] = 24197, + [SMALL_STATE(796)] = 24251, + [SMALL_STATE(797)] = 24305, + [SMALL_STATE(798)] = 24359, + [SMALL_STATE(799)] = 24413, + [SMALL_STATE(800)] = 24467, + [SMALL_STATE(801)] = 24521, + [SMALL_STATE(802)] = 24575, + [SMALL_STATE(803)] = 24629, + [SMALL_STATE(804)] = 24683, + [SMALL_STATE(805)] = 24737, + [SMALL_STATE(806)] = 24791, + [SMALL_STATE(807)] = 24845, + [SMALL_STATE(808)] = 24899, + [SMALL_STATE(809)] = 24953, + [SMALL_STATE(810)] = 25007, + [SMALL_STATE(811)] = 25061, + [SMALL_STATE(812)] = 25115, + [SMALL_STATE(813)] = 25169, + [SMALL_STATE(814)] = 25223, + [SMALL_STATE(815)] = 25277, + [SMALL_STATE(816)] = 25331, + [SMALL_STATE(817)] = 25385, + [SMALL_STATE(818)] = 25439, + [SMALL_STATE(819)] = 25493, + [SMALL_STATE(820)] = 25549, + [SMALL_STATE(821)] = 25603, + [SMALL_STATE(822)] = 25659, + [SMALL_STATE(823)] = 25713, + [SMALL_STATE(824)] = 25767, + [SMALL_STATE(825)] = 25825, + [SMALL_STATE(826)] = 25881, + [SMALL_STATE(827)] = 25937, + [SMALL_STATE(828)] = 25991, + [SMALL_STATE(829)] = 26045, + [SMALL_STATE(830)] = 26101, + [SMALL_STATE(831)] = 26155, + [SMALL_STATE(832)] = 26209, + [SMALL_STATE(833)] = 26263, + [SMALL_STATE(834)] = 26317, + [SMALL_STATE(835)] = 26371, + [SMALL_STATE(836)] = 26425, + [SMALL_STATE(837)] = 26479, + [SMALL_STATE(838)] = 26533, + [SMALL_STATE(839)] = 26587, + [SMALL_STATE(840)] = 26643, + [SMALL_STATE(841)] = 26697, + [SMALL_STATE(842)] = 26751, + [SMALL_STATE(843)] = 26805, + [SMALL_STATE(844)] = 26859, + [SMALL_STATE(845)] = 26913, + [SMALL_STATE(846)] = 26969, + [SMALL_STATE(847)] = 27025, + [SMALL_STATE(848)] = 27079, + [SMALL_STATE(849)] = 27133, + [SMALL_STATE(850)] = 27187, + [SMALL_STATE(851)] = 27241, + [SMALL_STATE(852)] = 27295, + [SMALL_STATE(853)] = 27349, + [SMALL_STATE(854)] = 27403, + [SMALL_STATE(855)] = 27457, + [SMALL_STATE(856)] = 27511, + [SMALL_STATE(857)] = 27565, + [SMALL_STATE(858)] = 27619, + [SMALL_STATE(859)] = 27673, + [SMALL_STATE(860)] = 27727, + [SMALL_STATE(861)] = 27781, + [SMALL_STATE(862)] = 27835, + [SMALL_STATE(863)] = 27889, + [SMALL_STATE(864)] = 27943, + [SMALL_STATE(865)] = 27997, + [SMALL_STATE(866)] = 28051, + [SMALL_STATE(867)] = 28105, + [SMALL_STATE(868)] = 28159, + [SMALL_STATE(869)] = 28213, + [SMALL_STATE(870)] = 28267, + [SMALL_STATE(871)] = 28321, + [SMALL_STATE(872)] = 28375, + [SMALL_STATE(873)] = 28429, + [SMALL_STATE(874)] = 28483, + [SMALL_STATE(875)] = 28537, + [SMALL_STATE(876)] = 28591, + [SMALL_STATE(877)] = 28645, + [SMALL_STATE(878)] = 28699, + [SMALL_STATE(879)] = 28753, + [SMALL_STATE(880)] = 28807, + [SMALL_STATE(881)] = 28861, + [SMALL_STATE(882)] = 28915, + [SMALL_STATE(883)] = 28969, + [SMALL_STATE(884)] = 29023, + [SMALL_STATE(885)] = 29077, + [SMALL_STATE(886)] = 29131, + [SMALL_STATE(887)] = 29185, + [SMALL_STATE(888)] = 29239, + [SMALL_STATE(889)] = 29295, + [SMALL_STATE(890)] = 29349, + [SMALL_STATE(891)] = 29403, + [SMALL_STATE(892)] = 29457, + [SMALL_STATE(893)] = 29511, + [SMALL_STATE(894)] = 29565, + [SMALL_STATE(895)] = 29621, + [SMALL_STATE(896)] = 29675, + [SMALL_STATE(897)] = 29729, + [SMALL_STATE(898)] = 29783, + [SMALL_STATE(899)] = 29837, + [SMALL_STATE(900)] = 29891, + [SMALL_STATE(901)] = 29945, + [SMALL_STATE(902)] = 29999, + [SMALL_STATE(903)] = 30053, + [SMALL_STATE(904)] = 30107, + [SMALL_STATE(905)] = 30163, + [SMALL_STATE(906)] = 30217, + [SMALL_STATE(907)] = 30271, + [SMALL_STATE(908)] = 30325, + [SMALL_STATE(909)] = 30379, + [SMALL_STATE(910)] = 30433, + [SMALL_STATE(911)] = 30487, + [SMALL_STATE(912)] = 30541, + [SMALL_STATE(913)] = 30595, + [SMALL_STATE(914)] = 30649, + [SMALL_STATE(915)] = 30703, + [SMALL_STATE(916)] = 30757, + [SMALL_STATE(917)] = 30811, + [SMALL_STATE(918)] = 30865, + [SMALL_STATE(919)] = 30919, + [SMALL_STATE(920)] = 30973, + [SMALL_STATE(921)] = 31027, + [SMALL_STATE(922)] = 31081, + [SMALL_STATE(923)] = 31135, + [SMALL_STATE(924)] = 31189, + [SMALL_STATE(925)] = 31243, + [SMALL_STATE(926)] = 31297, + [SMALL_STATE(927)] = 31351, + [SMALL_STATE(928)] = 31405, + [SMALL_STATE(929)] = 31459, + [SMALL_STATE(930)] = 31513, + [SMALL_STATE(931)] = 31567, + [SMALL_STATE(932)] = 31621, + [SMALL_STATE(933)] = 31675, + [SMALL_STATE(934)] = 31729, + [SMALL_STATE(935)] = 31783, + [SMALL_STATE(936)] = 31837, + [SMALL_STATE(937)] = 31891, + [SMALL_STATE(938)] = 31945, + [SMALL_STATE(939)] = 31999, + [SMALL_STATE(940)] = 32053, + [SMALL_STATE(941)] = 32107, + [SMALL_STATE(942)] = 32161, + [SMALL_STATE(943)] = 32215, + [SMALL_STATE(944)] = 32269, + [SMALL_STATE(945)] = 32323, + [SMALL_STATE(946)] = 32377, + [SMALL_STATE(947)] = 32431, + [SMALL_STATE(948)] = 32485, + [SMALL_STATE(949)] = 32539, + [SMALL_STATE(950)] = 32593, + [SMALL_STATE(951)] = 32647, + [SMALL_STATE(952)] = 32701, + [SMALL_STATE(953)] = 32755, + [SMALL_STATE(954)] = 32809, + [SMALL_STATE(955)] = 32862, + [SMALL_STATE(956)] = 32915, + [SMALL_STATE(957)] = 32968, + [SMALL_STATE(958)] = 33021, + [SMALL_STATE(959)] = 33074, + [SMALL_STATE(960)] = 33129, + [SMALL_STATE(961)] = 33182, + [SMALL_STATE(962)] = 33235, + [SMALL_STATE(963)] = 33288, + [SMALL_STATE(964)] = 33341, + [SMALL_STATE(965)] = 33394, + [SMALL_STATE(966)] = 33447, + [SMALL_STATE(967)] = 33500, + [SMALL_STATE(968)] = 33585, + [SMALL_STATE(969)] = 33638, + [SMALL_STATE(970)] = 33691, + [SMALL_STATE(971)] = 33744, + [SMALL_STATE(972)] = 33797, + [SMALL_STATE(973)] = 33850, + [SMALL_STATE(974)] = 33903, + [SMALL_STATE(975)] = 33956, + [SMALL_STATE(976)] = 34009, + [SMALL_STATE(977)] = 34062, + [SMALL_STATE(978)] = 34115, + [SMALL_STATE(979)] = 34168, + [SMALL_STATE(980)] = 34221, + [SMALL_STATE(981)] = 34274, + [SMALL_STATE(982)] = 34327, + [SMALL_STATE(983)] = 34380, + [SMALL_STATE(984)] = 34433, + [SMALL_STATE(985)] = 34486, + [SMALL_STATE(986)] = 34539, + [SMALL_STATE(987)] = 34592, + [SMALL_STATE(988)] = 34645, + [SMALL_STATE(989)] = 34698, + [SMALL_STATE(990)] = 34751, + [SMALL_STATE(991)] = 34804, + [SMALL_STATE(992)] = 34857, + [SMALL_STATE(993)] = 34910, + [SMALL_STATE(994)] = 34963, + [SMALL_STATE(995)] = 35016, + [SMALL_STATE(996)] = 35069, + [SMALL_STATE(997)] = 35122, + [SMALL_STATE(998)] = 35175, + [SMALL_STATE(999)] = 35260, + [SMALL_STATE(1000)] = 35313, + [SMALL_STATE(1001)] = 35366, + [SMALL_STATE(1002)] = 35419, + [SMALL_STATE(1003)] = 35472, + [SMALL_STATE(1004)] = 35525, + [SMALL_STATE(1005)] = 35578, + [SMALL_STATE(1006)] = 35631, + [SMALL_STATE(1007)] = 35684, + [SMALL_STATE(1008)] = 35737, + [SMALL_STATE(1009)] = 35790, + [SMALL_STATE(1010)] = 35843, + [SMALL_STATE(1011)] = 35898, + [SMALL_STATE(1012)] = 35951, + [SMALL_STATE(1013)] = 36036, + [SMALL_STATE(1014)] = 36089, + [SMALL_STATE(1015)] = 36158, + [SMALL_STATE(1016)] = 36211, + [SMALL_STATE(1017)] = 36276, + [SMALL_STATE(1018)] = 36349, + [SMALL_STATE(1019)] = 36402, + [SMALL_STATE(1020)] = 36455, + [SMALL_STATE(1021)] = 36508, + [SMALL_STATE(1022)] = 36561, + [SMALL_STATE(1023)] = 36614, + [SMALL_STATE(1024)] = 36681, + [SMALL_STATE(1025)] = 36764, + [SMALL_STATE(1026)] = 36855, + [SMALL_STATE(1027)] = 36908, + [SMALL_STATE(1028)] = 36961, + [SMALL_STATE(1029)] = 37014, + [SMALL_STATE(1030)] = 37067, + [SMALL_STATE(1031)] = 37120, + [SMALL_STATE(1032)] = 37211, + [SMALL_STATE(1033)] = 37264, + [SMALL_STATE(1034)] = 37317, + [SMALL_STATE(1035)] = 37382, + [SMALL_STATE(1036)] = 37457, + [SMALL_STATE(1037)] = 37542, + [SMALL_STATE(1038)] = 37595, + [SMALL_STATE(1039)] = 37648, + [SMALL_STATE(1040)] = 37701, + [SMALL_STATE(1041)] = 37754, + [SMALL_STATE(1042)] = 37807, + [SMALL_STATE(1043)] = 37860, + [SMALL_STATE(1044)] = 37913, + [SMALL_STATE(1045)] = 37994, + [SMALL_STATE(1046)] = 38059, + [SMALL_STATE(1047)] = 38112, + [SMALL_STATE(1048)] = 38165, + [SMALL_STATE(1049)] = 38218, + [SMALL_STATE(1050)] = 38271, + [SMALL_STATE(1051)] = 38342, + [SMALL_STATE(1052)] = 38395, + [SMALL_STATE(1053)] = 38448, + [SMALL_STATE(1054)] = 38501, + [SMALL_STATE(1055)] = 38566, + [SMALL_STATE(1056)] = 38619, + [SMALL_STATE(1057)] = 38672, + [SMALL_STATE(1058)] = 38731, + [SMALL_STATE(1059)] = 38784, + [SMALL_STATE(1060)] = 38837, + [SMALL_STATE(1061)] = 38922, + [SMALL_STATE(1062)] = 38975, + [SMALL_STATE(1063)] = 39028, + [SMALL_STATE(1064)] = 39105, + [SMALL_STATE(1065)] = 39157, + [SMALL_STATE(1066)] = 39209, + [SMALL_STATE(1067)] = 39261, + [SMALL_STATE(1068)] = 39313, + [SMALL_STATE(1069)] = 39365, + [SMALL_STATE(1070)] = 39421, + [SMALL_STATE(1071)] = 39481, + [SMALL_STATE(1072)] = 39533, + [SMALL_STATE(1073)] = 39586, + [SMALL_STATE(1074)] = 39671, + [SMALL_STATE(1075)] = 39766, + [SMALL_STATE(1076)] = 39861, + [SMALL_STATE(1077)] = 39946, + [SMALL_STATE(1078)] = 39999, + [SMALL_STATE(1079)] = 40091, + [SMALL_STATE(1080)] = 40175, + [SMALL_STATE(1081)] = 40225, + [SMALL_STATE(1082)] = 40275, + [SMALL_STATE(1083)] = 40329, + [SMALL_STATE(1084)] = 40379, + [SMALL_STATE(1085)] = 40471, + [SMALL_STATE(1086)] = 40555, + [SMALL_STATE(1087)] = 40639, + [SMALL_STATE(1088)] = 40695, + [SMALL_STATE(1089)] = 40745, + [SMALL_STATE(1090)] = 40829, + [SMALL_STATE(1091)] = 40918, + [SMALL_STATE(1092)] = 40967, + [SMALL_STATE(1093)] = 41044, + [SMALL_STATE(1094)] = 41133, + [SMALL_STATE(1095)] = 41220, + [SMALL_STATE(1096)] = 41307, + [SMALL_STATE(1097)] = 41358, + [SMALL_STATE(1098)] = 41439, + [SMALL_STATE(1099)] = 41528, + [SMALL_STATE(1100)] = 41581, + [SMALL_STATE(1101)] = 41662, + [SMALL_STATE(1102)] = 41749, + [SMALL_STATE(1103)] = 41838, + [SMALL_STATE(1104)] = 41925, + [SMALL_STATE(1105)] = 42014, + [SMALL_STATE(1106)] = 42063, + [SMALL_STATE(1107)] = 42150, + [SMALL_STATE(1108)] = 42237, + [SMALL_STATE(1109)] = 42326, + [SMALL_STATE(1110)] = 42415, + [SMALL_STATE(1111)] = 42504, + [SMALL_STATE(1112)] = 42591, + [SMALL_STATE(1113)] = 42680, + [SMALL_STATE(1114)] = 42769, + [SMALL_STATE(1115)] = 42858, + [SMALL_STATE(1116)] = 42907, + [SMALL_STATE(1117)] = 42994, + [SMALL_STATE(1118)] = 43083, + [SMALL_STATE(1119)] = 43172, + [SMALL_STATE(1120)] = 43261, + [SMALL_STATE(1121)] = 43350, + [SMALL_STATE(1122)] = 43439, + [SMALL_STATE(1123)] = 43528, + [SMALL_STATE(1124)] = 43617, + [SMALL_STATE(1125)] = 43706, + [SMALL_STATE(1126)] = 43795, + [SMALL_STATE(1127)] = 43884, + [SMALL_STATE(1128)] = 43973, + [SMALL_STATE(1129)] = 44062, + [SMALL_STATE(1130)] = 44151, + [SMALL_STATE(1131)] = 44240, + [SMALL_STATE(1132)] = 44329, + [SMALL_STATE(1133)] = 44418, + [SMALL_STATE(1134)] = 44507, + [SMALL_STATE(1135)] = 44596, + [SMALL_STATE(1136)] = 44685, + [SMALL_STATE(1137)] = 44734, + [SMALL_STATE(1138)] = 44823, + [SMALL_STATE(1139)] = 44912, + [SMALL_STATE(1140)] = 45001, + [SMALL_STATE(1141)] = 45090, + [SMALL_STATE(1142)] = 45179, + [SMALL_STATE(1143)] = 45266, + [SMALL_STATE(1144)] = 45355, + [SMALL_STATE(1145)] = 45444, + [SMALL_STATE(1146)] = 45533, + [SMALL_STATE(1147)] = 45622, + [SMALL_STATE(1148)] = 45711, + [SMALL_STATE(1149)] = 45800, + [SMALL_STATE(1150)] = 45889, + [SMALL_STATE(1151)] = 45978, + [SMALL_STATE(1152)] = 46065, + [SMALL_STATE(1153)] = 46154, + [SMALL_STATE(1154)] = 46243, + [SMALL_STATE(1155)] = 46329, + [SMALL_STATE(1156)] = 46379, + [SMALL_STATE(1157)] = 46465, + [SMALL_STATE(1158)] = 46551, + [SMALL_STATE(1159)] = 46637, + [SMALL_STATE(1160)] = 46723, + [SMALL_STATE(1161)] = 46809, + [SMALL_STATE(1162)] = 46895, + [SMALL_STATE(1163)] = 46981, + [SMALL_STATE(1164)] = 47067, + [SMALL_STATE(1165)] = 47153, + [SMALL_STATE(1166)] = 47239, + [SMALL_STATE(1167)] = 47289, + [SMALL_STATE(1168)] = 47375, + [SMALL_STATE(1169)] = 47455, + [SMALL_STATE(1170)] = 47541, + [SMALL_STATE(1171)] = 47627, + [SMALL_STATE(1172)] = 47701, + [SMALL_STATE(1173)] = 47787, + [SMALL_STATE(1174)] = 47873, + [SMALL_STATE(1175)] = 47959, + [SMALL_STATE(1176)] = 48023, + [SMALL_STATE(1177)] = 48073, + [SMALL_STATE(1178)] = 48159, + [SMALL_STATE(1179)] = 48245, + [SMALL_STATE(1180)] = 48319, + [SMALL_STATE(1181)] = 48399, + [SMALL_STATE(1182)] = 48485, + [SMALL_STATE(1183)] = 48559, + [SMALL_STATE(1184)] = 48607, + [SMALL_STATE(1185)] = 48661, + [SMALL_STATE(1186)] = 48709, + [SMALL_STATE(1187)] = 48769, + [SMALL_STATE(1188)] = 48855, + [SMALL_STATE(1189)] = 48905, + [SMALL_STATE(1190)] = 48991, + [SMALL_STATE(1191)] = 49077, + [SMALL_STATE(1192)] = 49145, + [SMALL_STATE(1193)] = 49225, + [SMALL_STATE(1194)] = 49311, + [SMALL_STATE(1195)] = 49397, + [SMALL_STATE(1196)] = 49467, + [SMALL_STATE(1197)] = 49517, + [SMALL_STATE(1198)] = 49595, + [SMALL_STATE(1199)] = 49643, + [SMALL_STATE(1200)] = 49729, + [SMALL_STATE(1201)] = 49789, + [SMALL_STATE(1202)] = 49869, + [SMALL_STATE(1203)] = 49955, + [SMALL_STATE(1204)] = 50015, + [SMALL_STATE(1205)] = 50065, + [SMALL_STATE(1206)] = 50139, + [SMALL_STATE(1207)] = 50225, + [SMALL_STATE(1208)] = 50273, + [SMALL_STATE(1209)] = 50321, + [SMALL_STATE(1210)] = 50407, + [SMALL_STATE(1211)] = 50493, + [SMALL_STATE(1212)] = 50569, + [SMALL_STATE(1213)] = 50655, + [SMALL_STATE(1214)] = 50717, + [SMALL_STATE(1215)] = 50777, + [SMALL_STATE(1216)] = 50863, + [SMALL_STATE(1217)] = 50943, + [SMALL_STATE(1218)] = 51015, + [SMALL_STATE(1219)] = 51081, + [SMALL_STATE(1220)] = 51167, + [SMALL_STATE(1221)] = 51242, + [SMALL_STATE(1222)] = 51313, + [SMALL_STATE(1223)] = 51388, + [SMALL_STATE(1224)] = 51457, + [SMALL_STATE(1225)] = 51523, + [SMALL_STATE(1226)] = 51589, + [SMALL_STATE(1227)] = 51652, + [SMALL_STATE(1228)] = 51715, + [SMALL_STATE(1229)] = 51778, + [SMALL_STATE(1230)] = 51841, + [SMALL_STATE(1231)] = 51904, + [SMALL_STATE(1232)] = 51943, + [SMALL_STATE(1233)] = 51982, + [SMALL_STATE(1234)] = 52021, + [SMALL_STATE(1235)] = 52074, + [SMALL_STATE(1236)] = 52127, + [SMALL_STATE(1237)] = 52180, + [SMALL_STATE(1238)] = 52233, + [SMALL_STATE(1239)] = 52286, + [SMALL_STATE(1240)] = 52339, + [SMALL_STATE(1241)] = 52392, + [SMALL_STATE(1242)] = 52442, + [SMALL_STATE(1243)] = 52492, + [SMALL_STATE(1244)] = 52522, + [SMALL_STATE(1245)] = 52552, + [SMALL_STATE(1246)] = 52594, + [SMALL_STATE(1247)] = 52634, + [SMALL_STATE(1248)] = 52663, + [SMALL_STATE(1249)] = 52692, + [SMALL_STATE(1250)] = 52721, + [SMALL_STATE(1251)] = 52758, + [SMALL_STATE(1252)] = 52787, + [SMALL_STATE(1253)] = 52816, + [SMALL_STATE(1254)] = 52853, + [SMALL_STATE(1255)] = 52882, + [SMALL_STATE(1256)] = 52911, + [SMALL_STATE(1257)] = 52940, + [SMALL_STATE(1258)] = 52994, + [SMALL_STATE(1259)] = 53026, + [SMALL_STATE(1260)] = 53058, + [SMALL_STATE(1261)] = 53090, + [SMALL_STATE(1262)] = 53144, + [SMALL_STATE(1263)] = 53169, + [SMALL_STATE(1264)] = 53192, + [SMALL_STATE(1265)] = 53214, + [SMALL_STATE(1266)] = 53236, + [SMALL_STATE(1267)] = 53260, + [SMALL_STATE(1268)] = 53304, + [SMALL_STATE(1269)] = 53328, + [SMALL_STATE(1270)] = 53352, + [SMALL_STATE(1271)] = 53396, + [SMALL_STATE(1272)] = 53426, + [SMALL_STATE(1273)] = 53450, + [SMALL_STATE(1274)] = 53474, + [SMALL_STATE(1275)] = 53498, + [SMALL_STATE(1276)] = 53522, + [SMALL_STATE(1277)] = 53568, + [SMALL_STATE(1278)] = 53592, + [SMALL_STATE(1279)] = 53616, + [SMALL_STATE(1280)] = 53638, + [SMALL_STATE(1281)] = 53660, + [SMALL_STATE(1282)] = 53684, + [SMALL_STATE(1283)] = 53709, + [SMALL_STATE(1284)] = 53730, + [SMALL_STATE(1285)] = 53753, + [SMALL_STATE(1286)] = 53776, + [SMALL_STATE(1287)] = 53799, + [SMALL_STATE(1288)] = 53822, + [SMALL_STATE(1289)] = 53847, + [SMALL_STATE(1290)] = 53872, + [SMALL_STATE(1291)] = 53897, + [SMALL_STATE(1292)] = 53918, + [SMALL_STATE(1293)] = 53963, + [SMALL_STATE(1294)] = 53984, + [SMALL_STATE(1295)] = 54007, + [SMALL_STATE(1296)] = 54028, + [SMALL_STATE(1297)] = 54051, + [SMALL_STATE(1298)] = 54076, + [SMALL_STATE(1299)] = 54101, + [SMALL_STATE(1300)] = 54128, + [SMALL_STATE(1301)] = 54151, + [SMALL_STATE(1302)] = 54174, + [SMALL_STATE(1303)] = 54195, + [SMALL_STATE(1304)] = 54215, + [SMALL_STATE(1305)] = 54235, + [SMALL_STATE(1306)] = 54255, + [SMALL_STATE(1307)] = 54275, + [SMALL_STATE(1308)] = 54295, + [SMALL_STATE(1309)] = 54315, + [SMALL_STATE(1310)] = 54337, + [SMALL_STATE(1311)] = 54357, + [SMALL_STATE(1312)] = 54377, + [SMALL_STATE(1313)] = 54397, + [SMALL_STATE(1314)] = 54417, + [SMALL_STATE(1315)] = 54437, + [SMALL_STATE(1316)] = 54457, + [SMALL_STATE(1317)] = 54477, + [SMALL_STATE(1318)] = 54499, + [SMALL_STATE(1319)] = 54519, + [SMALL_STATE(1320)] = 54539, + [SMALL_STATE(1321)] = 54559, + [SMALL_STATE(1322)] = 54579, + [SMALL_STATE(1323)] = 54599, + [SMALL_STATE(1324)] = 54619, + [SMALL_STATE(1325)] = 54639, + [SMALL_STATE(1326)] = 54659, + [SMALL_STATE(1327)] = 54679, + [SMALL_STATE(1328)] = 54703, + [SMALL_STATE(1329)] = 54723, + [SMALL_STATE(1330)] = 54743, + [SMALL_STATE(1331)] = 54765, + [SMALL_STATE(1332)] = 54785, + [SMALL_STATE(1333)] = 54805, + [SMALL_STATE(1334)] = 54840, + [SMALL_STATE(1335)] = 54865, + [SMALL_STATE(1336)] = 54890, + [SMALL_STATE(1337)] = 54913, + [SMALL_STATE(1338)] = 54936, + [SMALL_STATE(1339)] = 54961, + [SMALL_STATE(1340)] = 54984, + [SMALL_STATE(1341)] = 55007, + [SMALL_STATE(1342)] = 55030, + [SMALL_STATE(1343)] = 55053, + [SMALL_STATE(1344)] = 55076, + [SMALL_STATE(1345)] = 55101, + [SMALL_STATE(1346)] = 55124, + [SMALL_STATE(1347)] = 55147, + [SMALL_STATE(1348)] = 55172, + [SMALL_STATE(1349)] = 55197, + [SMALL_STATE(1350)] = 55222, + [SMALL_STATE(1351)] = 55243, + [SMALL_STATE(1352)] = 55268, + [SMALL_STATE(1353)] = 55289, + [SMALL_STATE(1354)] = 55310, + [SMALL_STATE(1355)] = 55333, + [SMALL_STATE(1356)] = 55356, + [SMALL_STATE(1357)] = 55379, + [SMALL_STATE(1358)] = 55399, + [SMALL_STATE(1359)] = 55419, + [SMALL_STATE(1360)] = 55439, + [SMALL_STATE(1361)] = 55463, + [SMALL_STATE(1362)] = 55483, + [SMALL_STATE(1363)] = 55507, + [SMALL_STATE(1364)] = 55527, + [SMALL_STATE(1365)] = 55547, + [SMALL_STATE(1366)] = 55567, + [SMALL_STATE(1367)] = 55587, + [SMALL_STATE(1368)] = 55607, + [SMALL_STATE(1369)] = 55627, + [SMALL_STATE(1370)] = 55647, + [SMALL_STATE(1371)] = 55667, + [SMALL_STATE(1372)] = 55687, + [SMALL_STATE(1373)] = 55707, + [SMALL_STATE(1374)] = 55727, + [SMALL_STATE(1375)] = 55747, + [SMALL_STATE(1376)] = 55767, + [SMALL_STATE(1377)] = 55787, + [SMALL_STATE(1378)] = 55807, + [SMALL_STATE(1379)] = 55827, + [SMALL_STATE(1380)] = 55847, + [SMALL_STATE(1381)] = 55867, + [SMALL_STATE(1382)] = 55891, + [SMALL_STATE(1383)] = 55911, + [SMALL_STATE(1384)] = 55931, + [SMALL_STATE(1385)] = 55951, + [SMALL_STATE(1386)] = 55975, + [SMALL_STATE(1387)] = 55995, + [SMALL_STATE(1388)] = 56015, + [SMALL_STATE(1389)] = 56035, + [SMALL_STATE(1390)] = 56055, + [SMALL_STATE(1391)] = 56075, + [SMALL_STATE(1392)] = 56095, + [SMALL_STATE(1393)] = 56122, + [SMALL_STATE(1394)] = 56153, + [SMALL_STATE(1395)] = 56186, + [SMALL_STATE(1396)] = 56217, + [SMALL_STATE(1397)] = 56248, + [SMALL_STATE(1398)] = 56281, + [SMALL_STATE(1399)] = 56312, + [SMALL_STATE(1400)] = 56337, + [SMALL_STATE(1401)] = 56362, + [SMALL_STATE(1402)] = 56391, + [SMALL_STATE(1403)] = 56422, + [SMALL_STATE(1404)] = 56453, + [SMALL_STATE(1405)] = 56484, + [SMALL_STATE(1406)] = 56515, + [SMALL_STATE(1407)] = 56546, + [SMALL_STATE(1408)] = 56571, + [SMALL_STATE(1409)] = 56604, + [SMALL_STATE(1410)] = 56637, + [SMALL_STATE(1411)] = 56667, + [SMALL_STATE(1412)] = 56693, + [SMALL_STATE(1413)] = 56723, + [SMALL_STATE(1414)] = 56749, + [SMALL_STATE(1415)] = 56779, + [SMALL_STATE(1416)] = 56801, + [SMALL_STATE(1417)] = 56831, + [SMALL_STATE(1418)] = 56861, + [SMALL_STATE(1419)] = 56883, + [SMALL_STATE(1420)] = 56915, + [SMALL_STATE(1421)] = 56941, + [SMALL_STATE(1422)] = 56971, + [SMALL_STATE(1423)] = 57001, + [SMALL_STATE(1424)] = 57031, + [SMALL_STATE(1425)] = 57053, + [SMALL_STATE(1426)] = 57083, + [SMALL_STATE(1427)] = 57113, + [SMALL_STATE(1428)] = 57143, + [SMALL_STATE(1429)] = 57165, + [SMALL_STATE(1430)] = 57195, + [SMALL_STATE(1431)] = 57225, + [SMALL_STATE(1432)] = 57257, + [SMALL_STATE(1433)] = 57287, + [SMALL_STATE(1434)] = 57317, + [SMALL_STATE(1435)] = 57349, + [SMALL_STATE(1436)] = 57379, + [SMALL_STATE(1437)] = 57401, + [SMALL_STATE(1438)] = 57433, + [SMALL_STATE(1439)] = 57455, + [SMALL_STATE(1440)] = 57485, + [SMALL_STATE(1441)] = 57515, + [SMALL_STATE(1442)] = 57545, + [SMALL_STATE(1443)] = 57575, + [SMALL_STATE(1444)] = 57605, + [SMALL_STATE(1445)] = 57628, + [SMALL_STATE(1446)] = 57655, + [SMALL_STATE(1447)] = 57680, + [SMALL_STATE(1448)] = 57705, + [SMALL_STATE(1449)] = 57730, + [SMALL_STATE(1450)] = 57757, + [SMALL_STATE(1451)] = 57772, + [SMALL_STATE(1452)] = 57799, + [SMALL_STATE(1453)] = 57826, + [SMALL_STATE(1454)] = 57851, + [SMALL_STATE(1455)] = 57870, + [SMALL_STATE(1456)] = 57893, + [SMALL_STATE(1457)] = 57912, + [SMALL_STATE(1458)] = 57939, + [SMALL_STATE(1459)] = 57958, + [SMALL_STATE(1460)] = 57985, + [SMALL_STATE(1461)] = 58014, + [SMALL_STATE(1462)] = 58041, + [SMALL_STATE(1463)] = 58068, + [SMALL_STATE(1464)] = 58087, + [SMALL_STATE(1465)] = 58106, + [SMALL_STATE(1466)] = 58135, + [SMALL_STATE(1467)] = 58162, + [SMALL_STATE(1468)] = 58189, + [SMALL_STATE(1469)] = 58208, + [SMALL_STATE(1470)] = 58227, + [SMALL_STATE(1471)] = 58252, + [SMALL_STATE(1472)] = 58275, + [SMALL_STATE(1473)] = 58300, + [SMALL_STATE(1474)] = 58325, + [SMALL_STATE(1475)] = 58352, + [SMALL_STATE(1476)] = 58381, + [SMALL_STATE(1477)] = 58408, + [SMALL_STATE(1478)] = 58435, + [SMALL_STATE(1479)] = 58458, + [SMALL_STATE(1480)] = 58483, + [SMALL_STATE(1481)] = 58510, + [SMALL_STATE(1482)] = 58537, + [SMALL_STATE(1483)] = 58558, + [SMALL_STATE(1484)] = 58587, + [SMALL_STATE(1485)] = 58616, + [SMALL_STATE(1486)] = 58635, + [SMALL_STATE(1487)] = 58660, + [SMALL_STATE(1488)] = 58689, + [SMALL_STATE(1489)] = 58710, + [SMALL_STATE(1490)] = 58733, + [SMALL_STATE(1491)] = 58747, + [SMALL_STATE(1492)] = 58763, + [SMALL_STATE(1493)] = 58777, + [SMALL_STATE(1494)] = 58803, + [SMALL_STATE(1495)] = 58829, + [SMALL_STATE(1496)] = 58855, + [SMALL_STATE(1497)] = 58877, + [SMALL_STATE(1498)] = 58891, + [SMALL_STATE(1499)] = 58915, + [SMALL_STATE(1500)] = 58931, + [SMALL_STATE(1501)] = 58955, + [SMALL_STATE(1502)] = 58969, + [SMALL_STATE(1503)] = 58983, + [SMALL_STATE(1504)] = 59009, + [SMALL_STATE(1505)] = 59033, + [SMALL_STATE(1506)] = 59059, + [SMALL_STATE(1507)] = 59073, + [SMALL_STATE(1508)] = 59089, + [SMALL_STATE(1509)] = 59113, + [SMALL_STATE(1510)] = 59129, + [SMALL_STATE(1511)] = 59155, + [SMALL_STATE(1512)] = 59181, + [SMALL_STATE(1513)] = 59203, + [SMALL_STATE(1514)] = 59219, + [SMALL_STATE(1515)] = 59241, + [SMALL_STATE(1516)] = 59267, + [SMALL_STATE(1517)] = 59289, + [SMALL_STATE(1518)] = 59313, + [SMALL_STATE(1519)] = 59329, + [SMALL_STATE(1520)] = 59355, + [SMALL_STATE(1521)] = 59381, + [SMALL_STATE(1522)] = 59395, + [SMALL_STATE(1523)] = 59421, + [SMALL_STATE(1524)] = 59447, + [SMALL_STATE(1525)] = 59463, + [SMALL_STATE(1526)] = 59485, + [SMALL_STATE(1527)] = 59507, + [SMALL_STATE(1528)] = 59530, + [SMALL_STATE(1529)] = 59553, + [SMALL_STATE(1530)] = 59568, + [SMALL_STATE(1531)] = 59591, + [SMALL_STATE(1532)] = 59614, + [SMALL_STATE(1533)] = 59635, + [SMALL_STATE(1534)] = 59658, + [SMALL_STATE(1535)] = 59673, + [SMALL_STATE(1536)] = 59696, + [SMALL_STATE(1537)] = 59719, + [SMALL_STATE(1538)] = 59736, + [SMALL_STATE(1539)] = 59759, + [SMALL_STATE(1540)] = 59782, + [SMALL_STATE(1541)] = 59805, + [SMALL_STATE(1542)] = 59822, + [SMALL_STATE(1543)] = 59839, + [SMALL_STATE(1544)] = 59860, + [SMALL_STATE(1545)] = 59883, + [SMALL_STATE(1546)] = 59902, + [SMALL_STATE(1547)] = 59925, + [SMALL_STATE(1548)] = 59948, + [SMALL_STATE(1549)] = 59971, + [SMALL_STATE(1550)] = 59994, + [SMALL_STATE(1551)] = 60017, + [SMALL_STATE(1552)] = 60034, + [SMALL_STATE(1553)] = 60057, + [SMALL_STATE(1554)] = 60080, + [SMALL_STATE(1555)] = 60103, + [SMALL_STATE(1556)] = 60126, + [SMALL_STATE(1557)] = 60143, + [SMALL_STATE(1558)] = 60166, + [SMALL_STATE(1559)] = 60189, + [SMALL_STATE(1560)] = 60212, + [SMALL_STATE(1561)] = 60229, + [SMALL_STATE(1562)] = 60248, + [SMALL_STATE(1563)] = 60271, + [SMALL_STATE(1564)] = 60294, + [SMALL_STATE(1565)] = 60317, + [SMALL_STATE(1566)] = 60340, + [SMALL_STATE(1567)] = 60363, + [SMALL_STATE(1568)] = 60386, + [SMALL_STATE(1569)] = 60409, + [SMALL_STATE(1570)] = 60432, + [SMALL_STATE(1571)] = 60455, + [SMALL_STATE(1572)] = 60478, + [SMALL_STATE(1573)] = 60501, + [SMALL_STATE(1574)] = 60524, + [SMALL_STATE(1575)] = 60547, + [SMALL_STATE(1576)] = 60570, + [SMALL_STATE(1577)] = 60593, + [SMALL_STATE(1578)] = 60616, + [SMALL_STATE(1579)] = 60639, + [SMALL_STATE(1580)] = 60658, + [SMALL_STATE(1581)] = 60681, + [SMALL_STATE(1582)] = 60704, + [SMALL_STATE(1583)] = 60727, + [SMALL_STATE(1584)] = 60750, + [SMALL_STATE(1585)] = 60767, + [SMALL_STATE(1586)] = 60790, + [SMALL_STATE(1587)] = 60813, + [SMALL_STATE(1588)] = 60833, + [SMALL_STATE(1589)] = 60853, + [SMALL_STATE(1590)] = 60873, + [SMALL_STATE(1591)] = 60885, + [SMALL_STATE(1592)] = 60897, + [SMALL_STATE(1593)] = 60917, + [SMALL_STATE(1594)] = 60933, + [SMALL_STATE(1595)] = 60953, + [SMALL_STATE(1596)] = 60969, + [SMALL_STATE(1597)] = 60989, + [SMALL_STATE(1598)] = 61007, + [SMALL_STATE(1599)] = 61027, + [SMALL_STATE(1600)] = 61043, + [SMALL_STATE(1601)] = 61059, + [SMALL_STATE(1602)] = 61079, + [SMALL_STATE(1603)] = 61099, + [SMALL_STATE(1604)] = 61119, + [SMALL_STATE(1605)] = 61139, + [SMALL_STATE(1606)] = 61153, + [SMALL_STATE(1607)] = 61165, + [SMALL_STATE(1608)] = 61181, + [SMALL_STATE(1609)] = 61199, + [SMALL_STATE(1610)] = 61211, + [SMALL_STATE(1611)] = 61227, + [SMALL_STATE(1612)] = 61247, + [SMALL_STATE(1613)] = 61259, + [SMALL_STATE(1614)] = 61279, + [SMALL_STATE(1615)] = 61299, + [SMALL_STATE(1616)] = 61319, + [SMALL_STATE(1617)] = 61331, + [SMALL_STATE(1618)] = 61351, + [SMALL_STATE(1619)] = 61367, + [SMALL_STATE(1620)] = 61387, + [SMALL_STATE(1621)] = 61407, + [SMALL_STATE(1622)] = 61419, + [SMALL_STATE(1623)] = 61439, + [SMALL_STATE(1624)] = 61455, + [SMALL_STATE(1625)] = 61473, + [SMALL_STATE(1626)] = 61491, + [SMALL_STATE(1627)] = 61507, + [SMALL_STATE(1628)] = 61527, + [SMALL_STATE(1629)] = 61543, + [SMALL_STATE(1630)] = 61563, + [SMALL_STATE(1631)] = 61583, + [SMALL_STATE(1632)] = 61603, + [SMALL_STATE(1633)] = 61623, + [SMALL_STATE(1634)] = 61643, + [SMALL_STATE(1635)] = 61659, + [SMALL_STATE(1636)] = 61671, + [SMALL_STATE(1637)] = 61683, + [SMALL_STATE(1638)] = 61699, + [SMALL_STATE(1639)] = 61719, + [SMALL_STATE(1640)] = 61739, + [SMALL_STATE(1641)] = 61759, + [SMALL_STATE(1642)] = 61771, + [SMALL_STATE(1643)] = 61787, + [SMALL_STATE(1644)] = 61805, + [SMALL_STATE(1645)] = 61821, + [SMALL_STATE(1646)] = 61837, + [SMALL_STATE(1647)] = 61853, + [SMALL_STATE(1648)] = 61865, + [SMALL_STATE(1649)] = 61881, + [SMALL_STATE(1650)] = 61897, + [SMALL_STATE(1651)] = 61915, + [SMALL_STATE(1652)] = 61931, + [SMALL_STATE(1653)] = 61947, + [SMALL_STATE(1654)] = 61959, + [SMALL_STATE(1655)] = 61975, + [SMALL_STATE(1656)] = 61995, + [SMALL_STATE(1657)] = 62015, + [SMALL_STATE(1658)] = 62032, + [SMALL_STATE(1659)] = 62049, + [SMALL_STATE(1660)] = 62066, + [SMALL_STATE(1661)] = 62083, + [SMALL_STATE(1662)] = 62100, + [SMALL_STATE(1663)] = 62117, + [SMALL_STATE(1664)] = 62134, + [SMALL_STATE(1665)] = 62151, + [SMALL_STATE(1666)] = 62164, + [SMALL_STATE(1667)] = 62177, + [SMALL_STATE(1668)] = 62194, + [SMALL_STATE(1669)] = 62211, + [SMALL_STATE(1670)] = 62226, + [SMALL_STATE(1671)] = 62243, + [SMALL_STATE(1672)] = 62258, + [SMALL_STATE(1673)] = 62275, + [SMALL_STATE(1674)] = 62292, + [SMALL_STATE(1675)] = 62309, + [SMALL_STATE(1676)] = 62326, + [SMALL_STATE(1677)] = 62341, + [SMALL_STATE(1678)] = 62356, + [SMALL_STATE(1679)] = 62369, + [SMALL_STATE(1680)] = 62384, + [SMALL_STATE(1681)] = 62401, + [SMALL_STATE(1682)] = 62416, + [SMALL_STATE(1683)] = 62431, + [SMALL_STATE(1684)] = 62446, + [SMALL_STATE(1685)] = 62463, + [SMALL_STATE(1686)] = 62480, + [SMALL_STATE(1687)] = 62495, + [SMALL_STATE(1688)] = 62512, + [SMALL_STATE(1689)] = 62527, + [SMALL_STATE(1690)] = 62544, + [SMALL_STATE(1691)] = 62561, + [SMALL_STATE(1692)] = 62578, + [SMALL_STATE(1693)] = 62595, + [SMALL_STATE(1694)] = 62608, + [SMALL_STATE(1695)] = 62625, + [SMALL_STATE(1696)] = 62640, + [SMALL_STATE(1697)] = 62655, + [SMALL_STATE(1698)] = 62672, + [SMALL_STATE(1699)] = 62689, + [SMALL_STATE(1700)] = 62706, + [SMALL_STATE(1701)] = 62723, + [SMALL_STATE(1702)] = 62738, + [SMALL_STATE(1703)] = 62755, + [SMALL_STATE(1704)] = 62772, + [SMALL_STATE(1705)] = 62787, + [SMALL_STATE(1706)] = 62800, + [SMALL_STATE(1707)] = 62817, + [SMALL_STATE(1708)] = 62834, + [SMALL_STATE(1709)] = 62849, + [SMALL_STATE(1710)] = 62866, + [SMALL_STATE(1711)] = 62883, + [SMALL_STATE(1712)] = 62898, + [SMALL_STATE(1713)] = 62915, + [SMALL_STATE(1714)] = 62932, + [SMALL_STATE(1715)] = 62949, + [SMALL_STATE(1716)] = 62966, + [SMALL_STATE(1717)] = 62979, + [SMALL_STATE(1718)] = 62994, + [SMALL_STATE(1719)] = 63007, + [SMALL_STATE(1720)] = 63022, + [SMALL_STATE(1721)] = 63035, + [SMALL_STATE(1722)] = 63052, + [SMALL_STATE(1723)] = 63069, + [SMALL_STATE(1724)] = 63086, + [SMALL_STATE(1725)] = 63103, + [SMALL_STATE(1726)] = 63118, + [SMALL_STATE(1727)] = 63135, + [SMALL_STATE(1728)] = 63152, + [SMALL_STATE(1729)] = 63169, + [SMALL_STATE(1730)] = 63186, + [SMALL_STATE(1731)] = 63203, + [SMALL_STATE(1732)] = 63220, + [SMALL_STATE(1733)] = 63237, + [SMALL_STATE(1734)] = 63254, + [SMALL_STATE(1735)] = 63271, + [SMALL_STATE(1736)] = 63288, + [SMALL_STATE(1737)] = 63305, + [SMALL_STATE(1738)] = 63322, + [SMALL_STATE(1739)] = 63339, + [SMALL_STATE(1740)] = 63356, + [SMALL_STATE(1741)] = 63373, + [SMALL_STATE(1742)] = 63386, + [SMALL_STATE(1743)] = 63401, + [SMALL_STATE(1744)] = 63418, + [SMALL_STATE(1745)] = 63435, + [SMALL_STATE(1746)] = 63448, + [SMALL_STATE(1747)] = 63462, + [SMALL_STATE(1748)] = 63476, + [SMALL_STATE(1749)] = 63486, + [SMALL_STATE(1750)] = 63498, + [SMALL_STATE(1751)] = 63510, + [SMALL_STATE(1752)] = 63522, + [SMALL_STATE(1753)] = 63536, + [SMALL_STATE(1754)] = 63546, + [SMALL_STATE(1755)] = 63558, + [SMALL_STATE(1756)] = 63572, + [SMALL_STATE(1757)] = 63584, + [SMALL_STATE(1758)] = 63598, + [SMALL_STATE(1759)] = 63612, + [SMALL_STATE(1760)] = 63622, + [SMALL_STATE(1761)] = 63632, + [SMALL_STATE(1762)] = 63646, + [SMALL_STATE(1763)] = 63660, + [SMALL_STATE(1764)] = 63670, + [SMALL_STATE(1765)] = 63682, + [SMALL_STATE(1766)] = 63696, + [SMALL_STATE(1767)] = 63710, + [SMALL_STATE(1768)] = 63722, + [SMALL_STATE(1769)] = 63736, + [SMALL_STATE(1770)] = 63746, + [SMALL_STATE(1771)] = 63760, + [SMALL_STATE(1772)] = 63774, + [SMALL_STATE(1773)] = 63784, + [SMALL_STATE(1774)] = 63794, + [SMALL_STATE(1775)] = 63808, + [SMALL_STATE(1776)] = 63822, + [SMALL_STATE(1777)] = 63834, + [SMALL_STATE(1778)] = 63848, + [SMALL_STATE(1779)] = 63862, + [SMALL_STATE(1780)] = 63876, + [SMALL_STATE(1781)] = 63886, + [SMALL_STATE(1782)] = 63900, + [SMALL_STATE(1783)] = 63914, + [SMALL_STATE(1784)] = 63928, + [SMALL_STATE(1785)] = 63940, + [SMALL_STATE(1786)] = 63954, + [SMALL_STATE(1787)] = 63964, + [SMALL_STATE(1788)] = 63978, + [SMALL_STATE(1789)] = 63992, + [SMALL_STATE(1790)] = 64004, + [SMALL_STATE(1791)] = 64018, + [SMALL_STATE(1792)] = 64032, + [SMALL_STATE(1793)] = 64046, + [SMALL_STATE(1794)] = 64060, + [SMALL_STATE(1795)] = 64074, + [SMALL_STATE(1796)] = 64088, + [SMALL_STATE(1797)] = 64102, + [SMALL_STATE(1798)] = 64116, + [SMALL_STATE(1799)] = 64130, + [SMALL_STATE(1800)] = 64144, + [SMALL_STATE(1801)] = 64156, + [SMALL_STATE(1802)] = 64170, + [SMALL_STATE(1803)] = 64182, + [SMALL_STATE(1804)] = 64196, + [SMALL_STATE(1805)] = 64210, + [SMALL_STATE(1806)] = 64224, + [SMALL_STATE(1807)] = 64236, + [SMALL_STATE(1808)] = 64250, + [SMALL_STATE(1809)] = 64264, + [SMALL_STATE(1810)] = 64274, + [SMALL_STATE(1811)] = 64288, + [SMALL_STATE(1812)] = 64302, + [SMALL_STATE(1813)] = 64316, + [SMALL_STATE(1814)] = 64326, + [SMALL_STATE(1815)] = 64340, + [SMALL_STATE(1816)] = 64354, + [SMALL_STATE(1817)] = 64368, + [SMALL_STATE(1818)] = 64378, + [SMALL_STATE(1819)] = 64392, + [SMALL_STATE(1820)] = 64402, + [SMALL_STATE(1821)] = 64414, + [SMALL_STATE(1822)] = 64428, + [SMALL_STATE(1823)] = 64440, + [SMALL_STATE(1824)] = 64454, + [SMALL_STATE(1825)] = 64468, + [SMALL_STATE(1826)] = 64482, + [SMALL_STATE(1827)] = 64492, + [SMALL_STATE(1828)] = 64506, + [SMALL_STATE(1829)] = 64520, + [SMALL_STATE(1830)] = 64534, + [SMALL_STATE(1831)] = 64544, + [SMALL_STATE(1832)] = 64556, + [SMALL_STATE(1833)] = 64568, + [SMALL_STATE(1834)] = 64582, + [SMALL_STATE(1835)] = 64596, + [SMALL_STATE(1836)] = 64610, + [SMALL_STATE(1837)] = 64624, + [SMALL_STATE(1838)] = 64634, + [SMALL_STATE(1839)] = 64644, + [SMALL_STATE(1840)] = 64658, + [SMALL_STATE(1841)] = 64672, + [SMALL_STATE(1842)] = 64686, + [SMALL_STATE(1843)] = 64700, + [SMALL_STATE(1844)] = 64714, + [SMALL_STATE(1845)] = 64728, + [SMALL_STATE(1846)] = 64738, + [SMALL_STATE(1847)] = 64752, + [SMALL_STATE(1848)] = 64766, + [SMALL_STATE(1849)] = 64780, + [SMALL_STATE(1850)] = 64794, + [SMALL_STATE(1851)] = 64808, + [SMALL_STATE(1852)] = 64822, + [SMALL_STATE(1853)] = 64836, + [SMALL_STATE(1854)] = 64850, + [SMALL_STATE(1855)] = 64860, + [SMALL_STATE(1856)] = 64870, + [SMALL_STATE(1857)] = 64884, + [SMALL_STATE(1858)] = 64898, + [SMALL_STATE(1859)] = 64908, + [SMALL_STATE(1860)] = 64922, + [SMALL_STATE(1861)] = 64934, + [SMALL_STATE(1862)] = 64948, + [SMALL_STATE(1863)] = 64958, + [SMALL_STATE(1864)] = 64972, + [SMALL_STATE(1865)] = 64986, + [SMALL_STATE(1866)] = 65000, + [SMALL_STATE(1867)] = 65010, + [SMALL_STATE(1868)] = 65022, + [SMALL_STATE(1869)] = 65036, + [SMALL_STATE(1870)] = 65048, + [SMALL_STATE(1871)] = 65062, + [SMALL_STATE(1872)] = 65072, + [SMALL_STATE(1873)] = 65082, + [SMALL_STATE(1874)] = 65096, + [SMALL_STATE(1875)] = 65108, + [SMALL_STATE(1876)] = 65122, + [SMALL_STATE(1877)] = 65136, + [SMALL_STATE(1878)] = 65148, + [SMALL_STATE(1879)] = 65162, + [SMALL_STATE(1880)] = 65176, + [SMALL_STATE(1881)] = 65190, + [SMALL_STATE(1882)] = 65204, + [SMALL_STATE(1883)] = 65218, + [SMALL_STATE(1884)] = 65232, + [SMALL_STATE(1885)] = 65242, + [SMALL_STATE(1886)] = 65256, + [SMALL_STATE(1887)] = 65268, + [SMALL_STATE(1888)] = 65282, + [SMALL_STATE(1889)] = 65296, + [SMALL_STATE(1890)] = 65310, + [SMALL_STATE(1891)] = 65324, + [SMALL_STATE(1892)] = 65338, + [SMALL_STATE(1893)] = 65352, + [SMALL_STATE(1894)] = 65366, + [SMALL_STATE(1895)] = 65380, + [SMALL_STATE(1896)] = 65394, + [SMALL_STATE(1897)] = 65408, + [SMALL_STATE(1898)] = 65422, + [SMALL_STATE(1899)] = 65436, + [SMALL_STATE(1900)] = 65450, + [SMALL_STATE(1901)] = 65464, + [SMALL_STATE(1902)] = 65478, + [SMALL_STATE(1903)] = 65492, + [SMALL_STATE(1904)] = 65504, + [SMALL_STATE(1905)] = 65518, + [SMALL_STATE(1906)] = 65532, + [SMALL_STATE(1907)] = 65546, + [SMALL_STATE(1908)] = 65560, + [SMALL_STATE(1909)] = 65574, + [SMALL_STATE(1910)] = 65584, + [SMALL_STATE(1911)] = 65596, + [SMALL_STATE(1912)] = 65610, + [SMALL_STATE(1913)] = 65624, + [SMALL_STATE(1914)] = 65638, + [SMALL_STATE(1915)] = 65652, + [SMALL_STATE(1916)] = 65664, + [SMALL_STATE(1917)] = 65674, + [SMALL_STATE(1918)] = 65688, + [SMALL_STATE(1919)] = 65702, + [SMALL_STATE(1920)] = 65716, + [SMALL_STATE(1921)] = 65730, + [SMALL_STATE(1922)] = 65744, + [SMALL_STATE(1923)] = 65758, + [SMALL_STATE(1924)] = 65772, + [SMALL_STATE(1925)] = 65782, + [SMALL_STATE(1926)] = 65796, + [SMALL_STATE(1927)] = 65810, + [SMALL_STATE(1928)] = 65824, + [SMALL_STATE(1929)] = 65838, + [SMALL_STATE(1930)] = 65852, + [SMALL_STATE(1931)] = 65866, + [SMALL_STATE(1932)] = 65880, + [SMALL_STATE(1933)] = 65894, + [SMALL_STATE(1934)] = 65904, + [SMALL_STATE(1935)] = 65918, + [SMALL_STATE(1936)] = 65932, + [SMALL_STATE(1937)] = 65946, + [SMALL_STATE(1938)] = 65960, + [SMALL_STATE(1939)] = 65972, + [SMALL_STATE(1940)] = 65986, + [SMALL_STATE(1941)] = 66000, + [SMALL_STATE(1942)] = 66014, + [SMALL_STATE(1943)] = 66028, + [SMALL_STATE(1944)] = 66042, + [SMALL_STATE(1945)] = 66056, + [SMALL_STATE(1946)] = 66068, + [SMALL_STATE(1947)] = 66082, + [SMALL_STATE(1948)] = 66092, + [SMALL_STATE(1949)] = 66106, + [SMALL_STATE(1950)] = 66120, + [SMALL_STATE(1951)] = 66134, + [SMALL_STATE(1952)] = 66148, + [SMALL_STATE(1953)] = 66162, + [SMALL_STATE(1954)] = 66176, + [SMALL_STATE(1955)] = 66190, + [SMALL_STATE(1956)] = 66204, + [SMALL_STATE(1957)] = 66218, + [SMALL_STATE(1958)] = 66232, + [SMALL_STATE(1959)] = 66246, + [SMALL_STATE(1960)] = 66258, + [SMALL_STATE(1961)] = 66272, + [SMALL_STATE(1962)] = 66286, + [SMALL_STATE(1963)] = 66300, + [SMALL_STATE(1964)] = 66314, + [SMALL_STATE(1965)] = 66328, + [SMALL_STATE(1966)] = 66342, + [SMALL_STATE(1967)] = 66356, + [SMALL_STATE(1968)] = 66370, + [SMALL_STATE(1969)] = 66380, + [SMALL_STATE(1970)] = 66390, + [SMALL_STATE(1971)] = 66404, + [SMALL_STATE(1972)] = 66418, + [SMALL_STATE(1973)] = 66428, + [SMALL_STATE(1974)] = 66442, + [SMALL_STATE(1975)] = 66456, + [SMALL_STATE(1976)] = 66470, + [SMALL_STATE(1977)] = 66484, + [SMALL_STATE(1978)] = 66494, + [SMALL_STATE(1979)] = 66508, + [SMALL_STATE(1980)] = 66522, + [SMALL_STATE(1981)] = 66536, + [SMALL_STATE(1982)] = 66548, + [SMALL_STATE(1983)] = 66562, + [SMALL_STATE(1984)] = 66576, + [SMALL_STATE(1985)] = 66590, + [SMALL_STATE(1986)] = 66604, + [SMALL_STATE(1987)] = 66616, + [SMALL_STATE(1988)] = 66628, + [SMALL_STATE(1989)] = 66639, + [SMALL_STATE(1990)] = 66648, + [SMALL_STATE(1991)] = 66659, + [SMALL_STATE(1992)] = 66670, + [SMALL_STATE(1993)] = 66681, + [SMALL_STATE(1994)] = 66692, + [SMALL_STATE(1995)] = 66701, + [SMALL_STATE(1996)] = 66712, + [SMALL_STATE(1997)] = 66723, + [SMALL_STATE(1998)] = 66734, + [SMALL_STATE(1999)] = 66743, + [SMALL_STATE(2000)] = 66754, + [SMALL_STATE(2001)] = 66765, + [SMALL_STATE(2002)] = 66776, + [SMALL_STATE(2003)] = 66787, + [SMALL_STATE(2004)] = 66798, + [SMALL_STATE(2005)] = 66809, + [SMALL_STATE(2006)] = 66820, + [SMALL_STATE(2007)] = 66829, + [SMALL_STATE(2008)] = 66840, + [SMALL_STATE(2009)] = 66849, + [SMALL_STATE(2010)] = 66860, + [SMALL_STATE(2011)] = 66871, + [SMALL_STATE(2012)] = 66880, + [SMALL_STATE(2013)] = 66891, + [SMALL_STATE(2014)] = 66902, + [SMALL_STATE(2015)] = 66913, + [SMALL_STATE(2016)] = 66924, + [SMALL_STATE(2017)] = 66935, + [SMALL_STATE(2018)] = 66946, + [SMALL_STATE(2019)] = 66957, + [SMALL_STATE(2020)] = 66968, + [SMALL_STATE(2021)] = 66979, + [SMALL_STATE(2022)] = 66988, + [SMALL_STATE(2023)] = 66999, + [SMALL_STATE(2024)] = 67010, + [SMALL_STATE(2025)] = 67021, + [SMALL_STATE(2026)] = 67030, + [SMALL_STATE(2027)] = 67041, + [SMALL_STATE(2028)] = 67052, + [SMALL_STATE(2029)] = 67063, + [SMALL_STATE(2030)] = 67074, + [SMALL_STATE(2031)] = 67085, + [SMALL_STATE(2032)] = 67096, + [SMALL_STATE(2033)] = 67105, + [SMALL_STATE(2034)] = 67116, + [SMALL_STATE(2035)] = 67127, + [SMALL_STATE(2036)] = 67136, + [SMALL_STATE(2037)] = 67147, + [SMALL_STATE(2038)] = 67158, + [SMALL_STATE(2039)] = 67169, + [SMALL_STATE(2040)] = 67180, + [SMALL_STATE(2041)] = 67191, + [SMALL_STATE(2042)] = 67200, + [SMALL_STATE(2043)] = 67211, + [SMALL_STATE(2044)] = 67222, + [SMALL_STATE(2045)] = 67233, + [SMALL_STATE(2046)] = 67244, + [SMALL_STATE(2047)] = 67255, + [SMALL_STATE(2048)] = 67266, + [SMALL_STATE(2049)] = 67275, + [SMALL_STATE(2050)] = 67286, + [SMALL_STATE(2051)] = 67297, + [SMALL_STATE(2052)] = 67308, + [SMALL_STATE(2053)] = 67319, + [SMALL_STATE(2054)] = 67330, + [SMALL_STATE(2055)] = 67341, + [SMALL_STATE(2056)] = 67350, + [SMALL_STATE(2057)] = 67361, + [SMALL_STATE(2058)] = 67372, + [SMALL_STATE(2059)] = 67381, + [SMALL_STATE(2060)] = 67392, + [SMALL_STATE(2061)] = 67403, + [SMALL_STATE(2062)] = 67414, + [SMALL_STATE(2063)] = 67425, + [SMALL_STATE(2064)] = 67436, + [SMALL_STATE(2065)] = 67447, + [SMALL_STATE(2066)] = 67458, + [SMALL_STATE(2067)] = 67469, + [SMALL_STATE(2068)] = 67478, + [SMALL_STATE(2069)] = 67489, + [SMALL_STATE(2070)] = 67500, + [SMALL_STATE(2071)] = 67511, + [SMALL_STATE(2072)] = 67522, + [SMALL_STATE(2073)] = 67533, + [SMALL_STATE(2074)] = 67544, + [SMALL_STATE(2075)] = 67555, + [SMALL_STATE(2076)] = 67566, + [SMALL_STATE(2077)] = 67577, + [SMALL_STATE(2078)] = 67588, + [SMALL_STATE(2079)] = 67599, + [SMALL_STATE(2080)] = 67608, + [SMALL_STATE(2081)] = 67619, + [SMALL_STATE(2082)] = 67630, + [SMALL_STATE(2083)] = 67641, + [SMALL_STATE(2084)] = 67652, + [SMALL_STATE(2085)] = 67663, + [SMALL_STATE(2086)] = 67674, + [SMALL_STATE(2087)] = 67685, + [SMALL_STATE(2088)] = 67696, + [SMALL_STATE(2089)] = 67707, + [SMALL_STATE(2090)] = 67718, + [SMALL_STATE(2091)] = 67729, + [SMALL_STATE(2092)] = 67740, + [SMALL_STATE(2093)] = 67751, + [SMALL_STATE(2094)] = 67760, + [SMALL_STATE(2095)] = 67771, + [SMALL_STATE(2096)] = 67782, + [SMALL_STATE(2097)] = 67793, + [SMALL_STATE(2098)] = 67804, + [SMALL_STATE(2099)] = 67815, + [SMALL_STATE(2100)] = 67826, + [SMALL_STATE(2101)] = 67835, + [SMALL_STATE(2102)] = 67846, + [SMALL_STATE(2103)] = 67857, + [SMALL_STATE(2104)] = 67868, + [SMALL_STATE(2105)] = 67879, + [SMALL_STATE(2106)] = 67890, + [SMALL_STATE(2107)] = 67901, + [SMALL_STATE(2108)] = 67912, + [SMALL_STATE(2109)] = 67921, + [SMALL_STATE(2110)] = 67932, + [SMALL_STATE(2111)] = 67943, + [SMALL_STATE(2112)] = 67954, + [SMALL_STATE(2113)] = 67965, + [SMALL_STATE(2114)] = 67976, + [SMALL_STATE(2115)] = 67987, + [SMALL_STATE(2116)] = 67998, + [SMALL_STATE(2117)] = 68009, + [SMALL_STATE(2118)] = 68020, + [SMALL_STATE(2119)] = 68031, + [SMALL_STATE(2120)] = 68042, + [SMALL_STATE(2121)] = 68053, + [SMALL_STATE(2122)] = 68064, + [SMALL_STATE(2123)] = 68075, + [SMALL_STATE(2124)] = 68086, + [SMALL_STATE(2125)] = 68097, + [SMALL_STATE(2126)] = 68106, + [SMALL_STATE(2127)] = 68117, + [SMALL_STATE(2128)] = 68128, + [SMALL_STATE(2129)] = 68139, + [SMALL_STATE(2130)] = 68150, + [SMALL_STATE(2131)] = 68161, + [SMALL_STATE(2132)] = 68172, + [SMALL_STATE(2133)] = 68183, + [SMALL_STATE(2134)] = 68194, + [SMALL_STATE(2135)] = 68205, + [SMALL_STATE(2136)] = 68216, + [SMALL_STATE(2137)] = 68227, + [SMALL_STATE(2138)] = 68238, + [SMALL_STATE(2139)] = 68249, + [SMALL_STATE(2140)] = 68260, + [SMALL_STATE(2141)] = 68271, + [SMALL_STATE(2142)] = 68282, + [SMALL_STATE(2143)] = 68293, + [SMALL_STATE(2144)] = 68304, + [SMALL_STATE(2145)] = 68315, + [SMALL_STATE(2146)] = 68326, + [SMALL_STATE(2147)] = 68337, + [SMALL_STATE(2148)] = 68348, + [SMALL_STATE(2149)] = 68359, + [SMALL_STATE(2150)] = 68368, + [SMALL_STATE(2151)] = 68379, + [SMALL_STATE(2152)] = 68390, + [SMALL_STATE(2153)] = 68401, + [SMALL_STATE(2154)] = 68412, + [SMALL_STATE(2155)] = 68423, + [SMALL_STATE(2156)] = 68434, + [SMALL_STATE(2157)] = 68445, + [SMALL_STATE(2158)] = 68456, + [SMALL_STATE(2159)] = 68467, + [SMALL_STATE(2160)] = 68478, + [SMALL_STATE(2161)] = 68487, + [SMALL_STATE(2162)] = 68498, + [SMALL_STATE(2163)] = 68509, + [SMALL_STATE(2164)] = 68520, + [SMALL_STATE(2165)] = 68531, + [SMALL_STATE(2166)] = 68542, + [SMALL_STATE(2167)] = 68553, + [SMALL_STATE(2168)] = 68564, + [SMALL_STATE(2169)] = 68575, + [SMALL_STATE(2170)] = 68586, + [SMALL_STATE(2171)] = 68597, + [SMALL_STATE(2172)] = 68608, + [SMALL_STATE(2173)] = 68617, + [SMALL_STATE(2174)] = 68626, + [SMALL_STATE(2175)] = 68637, + [SMALL_STATE(2176)] = 68648, + [SMALL_STATE(2177)] = 68659, + [SMALL_STATE(2178)] = 68668, + [SMALL_STATE(2179)] = 68679, + [SMALL_STATE(2180)] = 68688, + [SMALL_STATE(2181)] = 68699, + [SMALL_STATE(2182)] = 68710, + [SMALL_STATE(2183)] = 68721, + [SMALL_STATE(2184)] = 68732, + [SMALL_STATE(2185)] = 68741, + [SMALL_STATE(2186)] = 68750, + [SMALL_STATE(2187)] = 68758, + [SMALL_STATE(2188)] = 68766, + [SMALL_STATE(2189)] = 68774, + [SMALL_STATE(2190)] = 68782, + [SMALL_STATE(2191)] = 68790, + [SMALL_STATE(2192)] = 68798, + [SMALL_STATE(2193)] = 68806, + [SMALL_STATE(2194)] = 68814, + [SMALL_STATE(2195)] = 68822, + [SMALL_STATE(2196)] = 68830, + [SMALL_STATE(2197)] = 68838, + [SMALL_STATE(2198)] = 68846, + [SMALL_STATE(2199)] = 68854, + [SMALL_STATE(2200)] = 68862, + [SMALL_STATE(2201)] = 68870, + [SMALL_STATE(2202)] = 68878, + [SMALL_STATE(2203)] = 68886, + [SMALL_STATE(2204)] = 68894, + [SMALL_STATE(2205)] = 68902, + [SMALL_STATE(2206)] = 68910, + [SMALL_STATE(2207)] = 68918, + [SMALL_STATE(2208)] = 68926, + [SMALL_STATE(2209)] = 68934, + [SMALL_STATE(2210)] = 68942, + [SMALL_STATE(2211)] = 68950, + [SMALL_STATE(2212)] = 68958, + [SMALL_STATE(2213)] = 68966, + [SMALL_STATE(2214)] = 68974, + [SMALL_STATE(2215)] = 68982, + [SMALL_STATE(2216)] = 68990, + [SMALL_STATE(2217)] = 68998, + [SMALL_STATE(2218)] = 69006, + [SMALL_STATE(2219)] = 69014, + [SMALL_STATE(2220)] = 69022, + [SMALL_STATE(2221)] = 69030, + [SMALL_STATE(2222)] = 69038, + [SMALL_STATE(2223)] = 69046, + [SMALL_STATE(2224)] = 69054, + [SMALL_STATE(2225)] = 69062, + [SMALL_STATE(2226)] = 69070, + [SMALL_STATE(2227)] = 69078, + [SMALL_STATE(2228)] = 69086, + [SMALL_STATE(2229)] = 69094, + [SMALL_STATE(2230)] = 69102, + [SMALL_STATE(2231)] = 69110, + [SMALL_STATE(2232)] = 69118, + [SMALL_STATE(2233)] = 69126, + [SMALL_STATE(2234)] = 69134, + [SMALL_STATE(2235)] = 69142, + [SMALL_STATE(2236)] = 69150, + [SMALL_STATE(2237)] = 69158, + [SMALL_STATE(2238)] = 69166, + [SMALL_STATE(2239)] = 69174, + [SMALL_STATE(2240)] = 69182, + [SMALL_STATE(2241)] = 69190, + [SMALL_STATE(2242)] = 69198, + [SMALL_STATE(2243)] = 69206, + [SMALL_STATE(2244)] = 69214, + [SMALL_STATE(2245)] = 69222, + [SMALL_STATE(2246)] = 69230, + [SMALL_STATE(2247)] = 69238, + [SMALL_STATE(2248)] = 69246, + [SMALL_STATE(2249)] = 69254, + [SMALL_STATE(2250)] = 69262, + [SMALL_STATE(2251)] = 69270, + [SMALL_STATE(2252)] = 69278, + [SMALL_STATE(2253)] = 69286, + [SMALL_STATE(2254)] = 69294, + [SMALL_STATE(2255)] = 69302, + [SMALL_STATE(2256)] = 69310, + [SMALL_STATE(2257)] = 69318, + [SMALL_STATE(2258)] = 69326, + [SMALL_STATE(2259)] = 69334, + [SMALL_STATE(2260)] = 69342, + [SMALL_STATE(2261)] = 69350, + [SMALL_STATE(2262)] = 69358, + [SMALL_STATE(2263)] = 69366, + [SMALL_STATE(2264)] = 69374, + [SMALL_STATE(2265)] = 69382, + [SMALL_STATE(2266)] = 69390, + [SMALL_STATE(2267)] = 69398, + [SMALL_STATE(2268)] = 69406, + [SMALL_STATE(2269)] = 69414, + [SMALL_STATE(2270)] = 69422, + [SMALL_STATE(2271)] = 69430, + [SMALL_STATE(2272)] = 69438, + [SMALL_STATE(2273)] = 69446, + [SMALL_STATE(2274)] = 69454, + [SMALL_STATE(2275)] = 69462, + [SMALL_STATE(2276)] = 69470, + [SMALL_STATE(2277)] = 69478, + [SMALL_STATE(2278)] = 69486, + [SMALL_STATE(2279)] = 69494, + [SMALL_STATE(2280)] = 69502, + [SMALL_STATE(2281)] = 69510, + [SMALL_STATE(2282)] = 69518, + [SMALL_STATE(2283)] = 69526, + [SMALL_STATE(2284)] = 69534, + [SMALL_STATE(2285)] = 69542, + [SMALL_STATE(2286)] = 69550, + [SMALL_STATE(2287)] = 69558, + [SMALL_STATE(2288)] = 69566, + [SMALL_STATE(2289)] = 69574, + [SMALL_STATE(2290)] = 69582, + [SMALL_STATE(2291)] = 69590, + [SMALL_STATE(2292)] = 69598, + [SMALL_STATE(2293)] = 69606, + [SMALL_STATE(2294)] = 69614, + [SMALL_STATE(2295)] = 69622, + [SMALL_STATE(2296)] = 69630, + [SMALL_STATE(2297)] = 69638, + [SMALL_STATE(2298)] = 69646, + [SMALL_STATE(2299)] = 69654, + [SMALL_STATE(2300)] = 69662, + [SMALL_STATE(2301)] = 69670, + [SMALL_STATE(2302)] = 69678, + [SMALL_STATE(2303)] = 69686, + [SMALL_STATE(2304)] = 69694, + [SMALL_STATE(2305)] = 69702, + [SMALL_STATE(2306)] = 69710, + [SMALL_STATE(2307)] = 69718, + [SMALL_STATE(2308)] = 69726, + [SMALL_STATE(2309)] = 69734, + [SMALL_STATE(2310)] = 69742, + [SMALL_STATE(2311)] = 69750, + [SMALL_STATE(2312)] = 69758, + [SMALL_STATE(2313)] = 69766, + [SMALL_STATE(2314)] = 69774, + [SMALL_STATE(2315)] = 69782, + [SMALL_STATE(2316)] = 69790, + [SMALL_STATE(2317)] = 69798, + [SMALL_STATE(2318)] = 69806, + [SMALL_STATE(2319)] = 69814, + [SMALL_STATE(2320)] = 69822, + [SMALL_STATE(2321)] = 69830, + [SMALL_STATE(2322)] = 69838, + [SMALL_STATE(2323)] = 69846, + [SMALL_STATE(2324)] = 69854, + [SMALL_STATE(2325)] = 69862, + [SMALL_STATE(2326)] = 69870, + [SMALL_STATE(2327)] = 69878, + [SMALL_STATE(2328)] = 69886, + [SMALL_STATE(2329)] = 69894, + [SMALL_STATE(2330)] = 69902, + [SMALL_STATE(2331)] = 69910, + [SMALL_STATE(2332)] = 69918, + [SMALL_STATE(2333)] = 69926, + [SMALL_STATE(2334)] = 69934, + [SMALL_STATE(2335)] = 69942, + [SMALL_STATE(2336)] = 69950, + [SMALL_STATE(2337)] = 69958, + [SMALL_STATE(2338)] = 69966, + [SMALL_STATE(2339)] = 69974, + [SMALL_STATE(2340)] = 69982, + [SMALL_STATE(2341)] = 69990, + [SMALL_STATE(2342)] = 69998, + [SMALL_STATE(2343)] = 70006, + [SMALL_STATE(2344)] = 70014, + [SMALL_STATE(2345)] = 70022, + [SMALL_STATE(2346)] = 70030, + [SMALL_STATE(2347)] = 70038, + [SMALL_STATE(2348)] = 70046, + [SMALL_STATE(2349)] = 70054, + [SMALL_STATE(2350)] = 70062, + [SMALL_STATE(2351)] = 70070, + [SMALL_STATE(2352)] = 70078, + [SMALL_STATE(2353)] = 70086, + [SMALL_STATE(2354)] = 70094, + [SMALL_STATE(2355)] = 70102, + [SMALL_STATE(2356)] = 70110, + [SMALL_STATE(2357)] = 70118, + [SMALL_STATE(2358)] = 70126, + [SMALL_STATE(2359)] = 70134, + [SMALL_STATE(2360)] = 70142, + [SMALL_STATE(2361)] = 70150, + [SMALL_STATE(2362)] = 70158, + [SMALL_STATE(2363)] = 70166, + [SMALL_STATE(2364)] = 70174, + [SMALL_STATE(2365)] = 70182, + [SMALL_STATE(2366)] = 70190, + [SMALL_STATE(2367)] = 70198, + [SMALL_STATE(2368)] = 70206, + [SMALL_STATE(2369)] = 70214, + [SMALL_STATE(2370)] = 70222, + [SMALL_STATE(2371)] = 70230, + [SMALL_STATE(2372)] = 70238, + [SMALL_STATE(2373)] = 70246, + [SMALL_STATE(2374)] = 70254, + [SMALL_STATE(2375)] = 70262, + [SMALL_STATE(2376)] = 70270, + [SMALL_STATE(2377)] = 70278, + [SMALL_STATE(2378)] = 70286, + [SMALL_STATE(2379)] = 70294, + [SMALL_STATE(2380)] = 70302, + [SMALL_STATE(2381)] = 70310, + [SMALL_STATE(2382)] = 70318, + [SMALL_STATE(2383)] = 70326, + [SMALL_STATE(2384)] = 70334, + [SMALL_STATE(2385)] = 70342, + [SMALL_STATE(2386)] = 70350, + [SMALL_STATE(2387)] = 70358, + [SMALL_STATE(2388)] = 70366, + [SMALL_STATE(2389)] = 70374, + [SMALL_STATE(2390)] = 70382, + [SMALL_STATE(2391)] = 70390, + [SMALL_STATE(2392)] = 70398, + [SMALL_STATE(2393)] = 70406, + [SMALL_STATE(2394)] = 70414, + [SMALL_STATE(2395)] = 70422, + [SMALL_STATE(2396)] = 70430, + [SMALL_STATE(2397)] = 70438, + [SMALL_STATE(2398)] = 70446, + [SMALL_STATE(2399)] = 70454, + [SMALL_STATE(2400)] = 70462, + [SMALL_STATE(2401)] = 70470, + [SMALL_STATE(2402)] = 70478, + [SMALL_STATE(2403)] = 70486, + [SMALL_STATE(2404)] = 70494, + [SMALL_STATE(2405)] = 70502, + [SMALL_STATE(2406)] = 70510, + [SMALL_STATE(2407)] = 70518, + [SMALL_STATE(2408)] = 70526, + [SMALL_STATE(2409)] = 70534, + [SMALL_STATE(2410)] = 70542, + [SMALL_STATE(2411)] = 70550, + [SMALL_STATE(2412)] = 70558, + [SMALL_STATE(2413)] = 70566, + [SMALL_STATE(2414)] = 70574, + [SMALL_STATE(2415)] = 70582, + [SMALL_STATE(2416)] = 70590, + [SMALL_STATE(2417)] = 70598, }; static TSParseActionEntry ts_parse_actions[] = { @@ -114783,2490 +114936,2490 @@ static 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(1069), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1069), - [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(255), - [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2287), - [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), - [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(5), - [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(29), - [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1024), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2414), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1426), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1439), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(719), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(730), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2411), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1988), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(74), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(582), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(579), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1996), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(156), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2407), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1260), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(20), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1751), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2397), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2394), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2347), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1095), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1391), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1224), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(73), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2072), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1358), - [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(554), - [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2338), - [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), - [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(523), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2073), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(979), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1701), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(961), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2333), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1272), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(961), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1070), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(376), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2417), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(33), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), + [128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(27), + [131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(148), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(959), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2415), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1438), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(18), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1424), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(724), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(733), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2410), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2008), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(578), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(577), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(575), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2010), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(168), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2397), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1262), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(19), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1791), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2341), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2340), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2339), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1096), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1407), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1226), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2075), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1362), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(572), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(21), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(518), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2076), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1052), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1742), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1002), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2319), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1278), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1010), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), + [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 6, .production_id = 136), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 16), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 16), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), - [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(713), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(35), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(4), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(29), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(102), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1024), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2414), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1782), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2091), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(719), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(965), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(580), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2171), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(174), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2096), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(85), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(554), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2338), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(88), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(523), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2073), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(979), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1701), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(959), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(961), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2333), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(961), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_let_expression, 7, .production_id = 180), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 87), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 87), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 126), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 126), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(708), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(33), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(13), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(27), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(148), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(959), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2415), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1811), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(18), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2124), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(724), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(955), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(546), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(87), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2165), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(123), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(19), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2182), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(90), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(572), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2325), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(21), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(518), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2076), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1052), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1742), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1002), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2319), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1010), [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 1), [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 6, .production_id = 160), - [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), - [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_let_expression, 8, .production_id = 221), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 95), - [580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 2), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), - [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 204), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 29), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 29), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 32), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 25), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 25), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 56), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 56), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 2), + [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 2), + [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 204), + [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 204), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_label, 2), [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_label, 2), [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(217), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(245), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(216), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(291), [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(359), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(358), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2400), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(513), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1731), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(512), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(292), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(293), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2191), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(520), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(1682), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(517), [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(496), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2133), - [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(758), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2350), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2275), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1510), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2209), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2070), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(568), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(566), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2214), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1260), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1754), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2215), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2216), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2217), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2276), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1225), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2067), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1354), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), - [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2223), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2224), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1271), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2224), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), - [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), - [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 158), - [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 164), - [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), - [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), - [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), - [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), - [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 214), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 158), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 209), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 216), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 166), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 211), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 217), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 158), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 153), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 152), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 222), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 197), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 196), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 195), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), - [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 193), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 192), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), - [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 209), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), - [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), - [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 171), - [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(400), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(486), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(480), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(469), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2321), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(513), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1731), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(512), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(400), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 173), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 208), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 173), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 206), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 184), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 181), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 202), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 188), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1340), - [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(533), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(534), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1288), - [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2174), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2316), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(550), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(554), - [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2305), - [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1368), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(562), - [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(546), - [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1369), - [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2109), - [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1328), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1660), - [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1299), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1789), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1789), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(501), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2026), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(922), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2353), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2378), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1482), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1491), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2227), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2058), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(554), + [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(567), + [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2229), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1262), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1768), + [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2230), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2231), + [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2232), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2393), + [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1456), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1229), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2057), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1381), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(572), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2252), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1274), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2237), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 147), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 147), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 107), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 107), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 100), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 100), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 154), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 154), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 110), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 110), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 109), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 90), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 90), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 48), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 48), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement, 2), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement, 2), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 111), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 111), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 90), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 90), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 13), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 13), + [1105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [1107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 112), + [1113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 2), + [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), + [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 113), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 13), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 13), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 114), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 115), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 79), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 79), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 116), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 89), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 89), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 155), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 63), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 63), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(484), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(483), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(463), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2335), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(520), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(1682), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(517), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(274), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 121), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 122), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 122), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 114), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 114), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 157), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 157), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 116), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 72), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 72), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 114), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 114), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 123), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 116), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 114), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 114), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 116), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 124), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 158), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 125), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 72), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 72), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 64), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 107), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 107), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 72), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 72), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 72), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 159), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 106), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 104), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 67), + [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 67), + [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 161), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 163), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 164), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 164), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 121), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 47), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 47), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 165), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 165), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 50), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 50), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 102), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 49), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 91), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 130), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 130), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 153), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 153), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 149), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 149), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 131), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 158), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 158), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 72), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 72), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 116), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 116), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 158), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 158), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 166), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 166), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 158), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 158), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 132), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 22), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 229), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 229), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 167), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 225), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 228), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 228), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 168), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 93), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 93), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 227), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 227), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 219), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 24), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 24), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 49), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 92), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 92), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 169), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 26), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 26), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 226), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 225), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 224), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 224), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 213), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 138), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 170), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 140), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 13), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 13), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 222), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 222), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 79), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 91), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 141), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 13), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 13), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 220), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 219), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 218), + [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 218), + [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 144), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 217), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 217), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 13), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 13), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 13), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 13), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 216), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 216), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 209), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 209), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 215), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 215), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 194), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 214), + [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 214), + [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 213), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 145), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 145), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 212), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 212), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 211), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 211), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), + [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), + [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 209), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 209), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 208), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 208), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 206), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 206), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 176), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 28), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 28), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 68), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 48), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 90), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 170), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 202), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 202), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 200), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 199), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 199), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 198), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 198), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 197), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 197), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 48), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 196), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 196), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 116), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 116), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 47), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 47), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 195), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 195), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 194), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 193), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 193), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 146), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 146), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 47), + [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 47), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 69), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 163), + [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 89), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 89), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 48), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 171), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 171), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 192), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 192), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 191), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 190), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 189), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 189), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 188), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 188), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 70), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 70), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 152), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 152), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 83), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 48), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 48), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 47), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 47), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 149), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 149), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 48), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 173), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 173), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 173), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 173), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 185), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 90), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 90), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 184), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 184), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 182), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 182), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 181), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 181), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 71), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 178), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 178), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 131), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 177), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 177), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 176), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 72), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 37), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 85), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 85), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1333), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(528), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(530), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1299), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2162), + [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2289), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(565), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(572), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2257), + [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1370), + [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(558), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(556), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1372), + [2049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2179), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1309), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1725), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1284), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(1831), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2316), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 172), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), + [2225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2289), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 3), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 183), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 18), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 18), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 18), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 19), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 19), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 34), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 12), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 39), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 35), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 36), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 35), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 23), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 65), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 66), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 43), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 44), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 17), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 17), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 45), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 15), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 14), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 103), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 99), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 142), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 101), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 101), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 119), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 119), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 7), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 183), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 183), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), + [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 143), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 143), + [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 40), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 20), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 20), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 40), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 30), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 30), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 8), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 10), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), + [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), + [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), + [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), + [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 31), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 127), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 127), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 139), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 96), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 88), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 137), - [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2355), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 205), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 174), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 162), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 41), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 86), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 86), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 59), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 59), + [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 59), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 59), + [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(2358), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 59), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 59), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 107), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 107), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 107), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 147), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 147), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 147), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 128), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 175), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 107), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 174), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 205), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 120), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 147), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 162), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 148), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 108), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 3), REDUCE(sym__pattern, 1), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 11), REDUCE(sym_scoped_type_identifier, 3, .production_id = 12), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 33), REDUCE(sym_scoped_type_identifier, 3, .production_id = 34), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 55), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 38), REDUCE(sym_scoped_type_identifier, 3, .production_id = 39), [3299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(446), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(444), - [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(443), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1453), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1471), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(530), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 186), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 210), - [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1282), - [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(182), - [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 223), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1668), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(578), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), - [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1114), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1217), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 187), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 179), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(128), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 207), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), - [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), SHIFT_REPEAT(505), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1474), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 151), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2035), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(241), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1568), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1477), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(42), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), - [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(525), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1473), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1223), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 51), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 51), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 4), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 5), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 53), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 52), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 3), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 53), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 6, .production_id = 52), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_pattern, 2), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 52), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mut_pattern, 2), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 5, .production_id = 53), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 52), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 5), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 4), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 3, .production_id = 52), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 3), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_captured_pattern, 3), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 53), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_pattern, 2), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_pattern, 2), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_pattern, 4, .production_id = 52), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(316), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(314), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(313), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(532), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1488), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(1454), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 129), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 1, .production_id = 1), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 46), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 52), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 52), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 99), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 20), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 59), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 223), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 210), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 99), + [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 186), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), + [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1302), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(185), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 20), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 81), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1676), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(550), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1097), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 118), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 106), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 82), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 135), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(1532), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 74), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 134), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 133), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 75), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 76), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(186), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 77), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 26), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(1455), + [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(1452), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 2, .production_id = 78), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), + [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(525), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 42), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 150), SHIFT_REPEAT(521), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(41), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(2180), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 89), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 73), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 54), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 5), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 30), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 99), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_item, 3, .production_id = 117), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 2), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 20), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 94), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1230), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 27), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 151), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 207), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), + [4437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1466), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(668), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(98), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1461), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 3), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_meta_arguments_repeat1, 2), SHIFT_REPEAT(1221), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(223), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_arguments, 4), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 98), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 8), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 61), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 60), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(1465), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 97), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(668), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5033] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 187), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 60), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 61), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 179), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 80), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5009] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), }; #ifdef __cplusplus